function Validate(form)
{

	v1=form.txtname
	if(isblank(v1)==false) 
	{
		alert("Please Enter Your Name ?");
		v1.focus(); 
	return false
	}
	
	v1=form.txtcompany
	if(isblank(v1)==false) 
	{
	alert("Please Enter Company Name ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtaddress
	if(isblank(v1)==false) 
	{
	alert("Please Enter Address ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtphone
	if(isblank(v1)==false) 
	{
	alert("Please Enter Phone Number ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtemail
	if(isblank(v1)==false) 
	{
	alert("Please Enter Your Email ID ?");
	v1.focus(); 
	return false;
	}

	if(isEmail(v1)==false) 
	{
	alert("The email \""+ v1.value+" \"is not valid email id. Please enter valid email id.");
	v1.focus(); 
	return false;
	}
	
	v1=form.txtcomment
	if(isblank(v1)==false) 
	{
	alert("Please Enter Your Message ?");
	v1.focus(); 
	return false
	}	
	v1=form.captcha_input
	if(isblank(v1)==false) 
	{
	alert("Please Enter Verification Code ?");
	v1.focus(); 
	return false
	}
}

function isblank(s3) 
{
	if (s3.value == "") 
	{
	return false
	}
else 
	{
	return true
   }
}

function isEmail(s2) 
{
	if ((s2.value == "" || s2.value.indexOf('@', 0) == -1)) {
	return false
}
else {
	return true
   }

}

function Validate1(form)
{

	v1=form.txtname
	if(isblank(v1)==false) 
	{
		alert("Please Enter Your Name ?");
		v1.focus(); 
	return false
	}
	
	v1=form.txtdestinations
	if(isblank(v1)==false) 
	{
	alert("Please Enter Destinations ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtphone
	if(isblank(v1)==false) 
	{
	alert("Please Enter Phone Number ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtaddress
	if(isblank(v1)==false) 
	{
	alert("Please Enter Address ?");
	v1.focus(); 
	return false
	}
	
	v1=form.txtemail
	if(isblank(v1)==false) 
	{
	alert("Please Enter Your Email ID ?");
	v1.focus(); 
	return false;
	}

	if(isEmail(v1)==false) 
	{
	alert("The email \""+ v1.value+" \"is not valid email id. Please enter valid email id.");
	v1.focus(); 
	return false;
	}
	
	v1=form.txtcomment
	if(isblank(v1)==false) 
	{
	alert("Please Enter Your Message ?");
	v1.focus(); 
	return false
	}	
	v1=form.captcha_input
	if(isblank(v1)==false) 
	{
	alert("Please Enter Verification Code ?");
	v1.focus(); 
	return false
	}
}


