function verify()
{

// the form

	if (document.contyfurm.contactname.value.search(/^.+.+$/))
	{
		alert("Please fill in your name!")
		return
	}
	
	if (document.contyfurm.email.value.search(/^.+.+$/))
	{
		alert("Please fill in your email address!")
		return
	}

	if (document.contyfurm.phone.value.search(/^.+.+$/))
	{
		alert("Please fill in your telephone number!")
		return
	}
/* 
-------------Modified by eFinanceWeb on May, 20 2008 to remove the mandatory fields ------------
	if (document.contyfurm.date.value.search(/^.+.+$/))
	{
		alert("Please fill in the date of your event!")
		return
	}	

	if (document.contyfurm.type.value.search(/^.+.+$/))
	{
		alert("Please fill in the type of event!")
		return
	}	

	if (document.contyfurm.numguests.value.search(/^.+.+$/))
	{
		alert("Please fill in the number of guests!")
		return
	}	

-------------Modification ends here -----------------------------------------------------------
*/	

	
	else
	{
		document.contyfurm.submit();
		return
	}
}


