function checkform_newsletter_unsubscribe() {
	msg = "";

	if (!emailcheck(document.frm.email.value)) msg = msg + "- Your valid email address\n";
	if (document.frm.message.value == "")  msg = msg + "- Why you wish to unsubscribe\n";

	if (msg!="")
		{
		alert ("Please complete the following:\r\n\r\n"+msg);
		return false;
		}
}

