function submitform()
{
	var emailfilter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	var why = "";
	if (!document.quickform.name.value) {
			alert('Please enter your Name')
     	document.quickform.name.focus();
     	return false;
	
	}else if (!document.quickform.email.value) {
		 alert('Please enter your Email') 
     document.quickform.email.focus(); 
     return false;
	
	} else if (!emailfilter.test(document.quickform.email.value)) {
		 alert ("Please enter a valid Email address");
		 document.quickform.email.focus();
		 return false;
	
	}else	if (!document.quickform.ph_n.value) {
		  alert('Please enter your phone number') 
     	document.quickform.ph_n.focus(); 
     	return false;		
					
	}else	if (!document.quickform.city.value) {
		  alert('Please enter your City name') 
     	document.quickform.city.focus(); 
     	return false;
			
	}else	if (!document.quickform.zip.value) {
		  alert('Please enter your Pincode') 
     	document.quickform.zip.focus(); 
     	return false;
			
	}else	if (!document.quickform.state.value) {
		  alert('Please enter your State name') 
     	document.quickform.state.focus(); 
     	return false;				
	
	}else	if (!document.quickform.country.value) {
		  alert('Please enter your Country name') 
     	document.quickform.country.focus(); 
     	return false; 
	
	}else	if (document.quickform.comment.value.length < 30) {
		alert('Please enter your Comments atleast 30 Characters') 
     	document.quickform.comment.focus();
			document.quickform.comment.select(); 
     	return false; 
	} else {
		return true;
	}

}
