function mailing_list(act){
//	alert("mailing list");
	if (document.FMAILING.email.value.length == 0 ){
		alert("Please enter email address");
		document.FMAILING.email.focus();
		return;
	}
	if (!validateEmailAddress(document.FMAILING.email.value)){
		alert("Please enter a valid email address");
		document.FMAILING.email.focus();
		return;
	}
	document.FMAILING.MAILINGACT.value = 1;
	document.FMAILING.action = "mailing_list.php";
	document.FMAILING.submit();
}

