// JavaScript Document
function checkform(){
	if(document.form1.name.value=='')
	{
		alert("Please Enter your Name");
		document.form1.name.focus();
		return false;
	}
	if(document.form1.phone.value=='')
	{
		alert("Please Enter your Phone no.")
		document.form1.phone.focus();
		return false;
	}
	if(!document.getElementById("verify").value)
		{
		alert('Please enter the verification code given below');
		document.getElementById("verify").focus();
		return false;
	}
	if(document.getElementById("verify").value!=document.getElementById("vp").value)
	{
		alert('Verification code does not match');
		document.getElementById("verify").value='';
		document.getElementById("verify").focus();
		return false;
	}
}
function checkform2(){
	if(document.form2.name2.value=='')
	{
		alert("Please Enter your Name");
		document.form2.name2.focus();
		return false;
	}
	if(document.form2.phone2.value=='')
	{
		alert("Please Enter your Phone no.")
		document.form2.phone2.focus();
		return false;
	}
		if(!document.getElementById("verify2").value)
		{
		alert('Please enter the verification code given below');
		document.getElementById("verify2").focus();
		return false;
	}
	if(document.getElementById("verify2").value!=document.getElementById("vp2").value)
	{
		alert('Verification code does not match');
		document.getElementById("verify2").value='';
		document.getElementById("verify2").focus();
		return false;
	}
	
}