function validation(){
		if(document.getElementById("name").value==""){
				alert("Please Enter Name");
				document.getElementById("name").focus();
				return false;
				}
		if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(document.getElementById("email").value)){
				alert("Enter a valid e-mail address");
				document.getElementById("email").focus();
				return false;
				}
		if(document.getElementById("company").value==""){
				alert("Please Enter Company Name");
				document.getElementById("company").focus();
				return false;
				}
		if(document.getElementById("address").value==""){
				alert("Please Enter address");
				document.getElementById("address").focus();
				return false;
				}
		if(document.getElementById("state").value==""){
				alert("Please Enter city,state and zip");
				document.getElementById("state").focus();
				return false;
				}
		if(document.getElementById("telephone").value==""){
				alert("Please Enter Telephone No.");
				document.getElementById("telephone").focus();
				return false;
				}
		if(isNaN(document.getElementById("telephone").value)){
				alert("Telephone No. Should be a Numeric Value");
				document.getElementById("telephone").focus();
				return false;
				}
		if(document.getElementById("servicetype").value==""){
				alert("Please select yout Service Type");
				document.getElementById("servicetype").focus();
				return false;
				}
		if(document.getElementById("testimonial").value==""){
				alert("Please enter a Testimonial");
				document.getElementById("testimonial").focus();
				return false;
				}
		if(document.getElementById("message").value==""){
				alert("Please enter a Message");
				document.getElementById("message").focus();
				return false;
				}
					
	}