// JavaScript Document

		
		function check()
		{
		    if (document.contactfm.fname.value =="")
			{
			window.alert("Please Fill Your Name ");
			document.contactfm.fname.focus();
			return false;
			}
			if (document.contactfm.email.value =="")
			{
			window.alert("Please Fill Your Email ");
			document.contactfm.email.focus();
			return false;
			}
			if (document.contactfm.services.value =="")
			{
			window.alert("Please select one Service ");
			document.contactfm.services.focus();
			return false;
			}
			if (document.contactfm.howsoon.value =="")
			{
			window.alert("Please select How Soon you need our service ");
			document.contactfm.howsoon.focus();
			return false;
			}
			if (document.contactfm.way.value =="")
			{
			window.alert("Please Fill Best way to contact ");
			document.contactfm.way.focus();
			return false;
			}
			if(document.contactfm.Pic.value=="" || (document.contactfm.hidPic.value != document.contactfm.hidPic.value))
			{
				window.alert("You missed verification code ");
				document.contactfm.Pic.focus();
				return false;
			}
		return true;
		}
	
	
	
	function check1()
		{
		    if (document.quotefm.fname.value =="")
			{
			window.alert("Please Fill Your Name ");
			document.quotefm.fname.focus();
			return false;
			}
			if (document.quotefm.email.value =="")
			{
			window.alert("Please Fill Your Email ");
			document.quotefm.email.focus();
			return false;
			}
			if (document.quotefm.services.value =="")
			{
			window.alert("Please select one Service ");
			document.quotefm.services.focus();
			return false;
			}
			if (document.quotefm.howsoon.value =="")
			{
			window.alert("Please select How Soon you need our service ");
			document.quotefm.howsoon.focus();
			return false;
			}
			if (document.quotefm.way.value =="")
			{
			window.alert("Please Fill Best way to contact ");
			document.quotefm.way.focus();
			return false;
			}
			if (document.quotefm.hearus.value =="")
			{
			window.alert("Please tell how you hear about us");
			document.quotefm.hearus.focus();
			return false;
			}
			if(document.quotefm.Pic.value=="" || (document.quotefm.Pic.value != document.quotefm.hidPic.value))
			{
				window.alert("You missed verification code/Invalid code entered ");
				document.quotefm.Pic.focus();
				return false;
			}
		return true;
		}
