<!--
function verify(theform)
{	var themessage = "";
	if (theform.realname.value=="") { themessage += " -- Name\n"; }
	if (theform.company.value=="") { themessage += " -- Company\n"; }
	if (theform.email.value=="") { themessage += " -- E-mail\n"; }
	if (theform.phone.value=="") { themessage += " -- Phone\n"; }
	if (theform.city.value=="") { themessage += " -- City\n"; }
	if (theform.state.value=="") { themessage += " -- State\n"; }
	if (theform.zip.value=="") { themessage += " -- Zip\n"; }
	if (theform.country.value=="") { themessage += " -- Country\n"; }
	if (theform.description_of_project.value=="") { themessage += " -- Description of project\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;
	}
}
-->
