function validateForm()
{
	var form = document.infoform;
	
//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.Name.value=="")
	{
		alert("Please Enter Your Name") ;
		form.Name.focus() ;
		return false;
	}
	
	/*	if(form.last_name.value=="")
	{
		alert("Please Enter Your Last Name") ;
		form.last_name.focus() ;
		return false;
	}*/
	
//  FOR E-MAIL ID VALIDATIUON
	if(form.email=="")
	{
		alert("Please Enter Your Email ID!") ;
		form.email.focus() ;
		return false;
	}	
		if (!form.email.value.match(/^[\w\.\-]+@([\w\-]+\.)+[a-zA-Z]+$/))
		{
			alert("Please enter a valid E-mail ID!");
			form.email.focus();
			form.email.value="";
			return false;
		}
	
	//	if(form.street.value=="")
//	{
//		alert("Please Enter Your Street") ;
//		form.street.focus() ;
//		return false;
//	}
	
/*		if(form.city.value=="")
	{
		alert("Please Enter Your City") ;
		form.city.focus() ;
		return false;
	}
	
		if(form.state.value=="")
	{
		alert("Please Enter Your State") ;
		form.state.focus() ;
		return false;
	}*/
	
//  FOR DROPDOWN MENU VALIDATIUON
/*	if(form.timeformat.value=="")
	{
		alert("Please Select AM or PM") ;
		form.timeformat.focus() ;
		return false;
	}
		*/
		
/*//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.department.value=="")
	{
		alert("Please Enter Your Department") ;
		form.department.focus() ;
		return false;
	}*/
	
/*//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.address.value=="")
	{
		alert("Please Enter Your Address") ;
		form.address.focus() ;
		return false;
	}*/
	
/*//  FOR NORMAL TEXT FIELD VALIDATIUON
	if(form.state.value=="")
	{
		alert("Please Enter Your State") ;
		form.state.focus() ;
		return false;
	}
	*/
/*// FOR NUMARIC ZIP VALIDATIUON

	if(form.zip.value=="")
	{
		alert("Please Enter Your Zip Code") ;
		form.zip.focus() ;
		return false;
	}
		if(isNaN(form.zip.value)==true)
		{
			alert("Zip Code must be Numeric") ;
			form.zip.focus();
			form.zip.value="";
			return false;
		}	*/
		
// FOR NUMARIC PHONE VALIDATIUON	
	if(form.phone.value=="")
	{
		alert("Please Enter Your  Phone") ;
		form.phone.focus() ;
		return false;
	}
		if(isNaN(form.phone.value)==true)
		{
			alert("Phone Number must be numeric") ;
			form.phone.focus();
			form.phone.value="";
			return false;
	}	
	      if(isNaN(form.cell_phone.value)==true)
                {
                        alert("Cell Phone Number must be numeric") ;
                        form.cell_phone.focus();
                        form.cell_phone.value="";
                        return false;
        }       

		return;
}
