function chkForm(Frm)
{
	var AlertMsg = '';
	var GoAhead = 1;
	
	/* Check for First name and Last name */
	if (Frm.name.value=='')
	{AlertMsg = AlertMsg + 'Please enter your name.\n';GoAhead=0;}
	
	/* Check for email address */
	if (Frm.email.value=='')
	{AlertMsg = AlertMsg + 'Please enter your email address.\n';GoAhead=0;}
	else
	{
		/* Validate email */
		var str=Frm.email.value
		var filter=/^.+@.+\..{2,3}$/
		 if (filter.test(str))
			{AlertMsg = AlertMsg + '';}
		 else 
			{AlertMsg = AlertMsg + 'Please enter a valid email address.\n';GoAhead=0;}
	}
	if (Frm.phonenumber.value.length<10)
	{AlertMsg = AlertMsg + 'Phone number. Please include Area Code.\n';GoAhead=0;}
	else
	{
		var filter = /^[0-9]*$/; 
		if (!filter.test(Frm.phonenumber.value))
		{AlertMsg = AlertMsg + '\tPhone number must be numeric (No dashes).\n';GoAhead=0;}
	}	
	
	if (Frm.zip.value=='')
	{AlertMsg = AlertMsg + 'Zip code.\n';GoAhead=0;}
	else
	{
		var filter = /^[0-9]*$/; 
		if (!filter.test(Frm.zip.value)) 
		{AlertMsg = AlertMsg + '\tZip code must be numeric.\n';GoAhead=0;}
	}

if (GoAhead==0)
	{alert(AlertMsg);return false;}
	else
	{return true;}

}
