/*
** Subscribe/Unsubscribe to the mailing list
**
*/
function mlsubscribe()
{
	
    document.SubscribeForm.action.value='subscribe';
    return true;
}

function mlunsubscribe()
{
    document.SubscribeForm.action.value='unsubscribe';
    return true;
}
