function validateContactForm()
{
	var sMSG
	sMSG = ""
	sMSG = "Please make sure you have completed the form correctly:\n"
	
	var expr = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/
	var email = document.form1.email.value
	if(!(expr.test(email)))
	{
		sMSG = sMSG + "\n- 'Email' is a Mandatory field"
		document.form1.email.focus();
	}
	if(document.form1.fname.value.length < 1)
	{
		sMSG = sMSG + "\n- 'First Name' is a Mandatory field"
		document.form1.fname.focus();	
	}
	if(document.form1.phone.value.length < 1)
	{
		sMSG = sMSG + "\n- 'Phone' is a Mandatory field"
		document.form1.phone.focus();	
	}
	if (sMSG == "Please make sure you have completed the form correctly:\n")
	{
		return true;
	}
	else
	{
		alert(sMSG)
		return false;	
	}
}