// JavaScript Document
	
		function Ready()
		{
			Flag = false;
			if(document.formmain.name.value == "")
			{
			alert("Please Enter Name");
			return false;
			}
			if(document.formmain.email.value == "")				
			{
				alert("Please Enter Email id");
				return false;
			}	

			if (!IsEmail(document.formmain.email.value))	
			{
				alert("Invalid Email id");
        		return false;
			}	
			if(document.formmain.message.value == "")
			{
				alert("Please Enter atleast 1 Character in message");
				return false;
			}
			
		
			else{
				//alert('Thank you for contacting us for your queries. We will respond back to you shortly.');
				return true;
				}
}
