	// general-purpose popup
	function checkNewsletter(theform)  {
		var msg="";

//		if (trim(theform.title.value=="")) msg = "Your title..\n";
//		if (trim(theform.first_name.value=="")) msg = msg + "Your first name..\n";
//		if (trim(theform.last_name.value=="")) msg = msg + "Your surname..\n";
		emailaddress = trim(document.getElementById("Email").value);
		if (emailaddress==""||((emailaddress.indexOf("@") == -1)||emailaddress.indexOf(".") == -1))  { 
			msg=msg+"Your email address is either missing or in an invalid format...\n";
			}
//		if (theform.contact_method.selectedIndex==0) msg = msg + "The preferred method of contacting you..\n";
//		if (theform.wherehear.selectedIndex==0) msg = msg + "Where you heard about us..\n";
		if (msg!="")  {
			alert("Please supply this missing information: \n\n" + msg);
			return false;		
			}
		else return true;
		}



