<!--
function verify(theform)
{	var themessage = "";
	if (theform.realname.value=="") { themessage += " -- Name\n"; }
	if (theform.company.value=="") { themessage += " -- Company\n"; }
	if (theform.email.value=="") { themessage += " -- Email\n"; }
//	alert if fields are empty and cancel form submit
	if (themessage.length)
	{	alert("You are required to complete the following fields:\n"+themessage);
		return false;
	}
}
-->

