function CheckForm()
{
	
	if (window.document.qform.Arrival_Date.value=="")
	{
	alert("Please enter the Date of Travel  !")
	window.document.qform.Arrival_Date.focus();
	return false;	
	}
	if (window.document.qform.Arrival_Month.value=="")
	{
	alert("Please enter the Date of Travel  !")
	window.document.qform.Arrival_Month.focus();
	return false;	
	}
	if (window.document.qform.Arrival_Year.value=="")
	{
	alert("Please enter the Date of Travel  !")
	window.document.qform.Arrival_Year.focus();
	return false;	
	}
if (window.document.qform.Departure_Date.value=="")
	{
	alert("Please enter the return Date !")
	window.document.qform.Departure_Date.focus();
	return false;	
	}

if (window.document.qform.Departure_Month.value=="")
	{
	alert("Please enter the return month !")
	window.document.qform.Departure_Month.focus();
	return false;	
	}
	if (window.document.qform.Departure_Year.value=="")
	{
	alert("Please enter the return year !")
	window.document.qform.Departure_Year.focus();
	return false;	
	}
if (window.document.qform.Phone.value=="")
	{
	alert("Please enter your Phone no!")
	window.document.qform.Phone.focus();
	return false;	
	}
if (window.document.qform.txtfrom.value=="")
	{
	alert("Please enter the Routing (Origin) !")
	window.document.qform.txtfrom.focus();
	return false;	
	}


if (window.document.qform.txtto.value=="")
	{
	alert("Please enter the Routing (Destination) !")
	window.document.qform.txtto.focus();
	return false;	
	}


if (window.document.qform.Name.value=="")
	{
	alert("Please enter your Name!")
	window.document.qform.Name.focus();
	return false;	
	}
	if (window.document.qform.Country.value=="")
	{
	alert("Please enter your Country!")
	window.document.qform.Country.focus();
	return false;	
	}
	if (window.document.qform.Passengers.value=="")
	{
	alert("Please enter No. of Passengers!")
	window.document.qform.Passengers.focus();
	return false;	
	}
if (window.document.qform.EmailID.value=="")
	{
	alert("Please enter your email! you@yourdomain.com")
	window.document.qform.EmailID.focus();
	return false;	
	}	
else
{ if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(qform.EmailID.value))
{ return (true) }
alert("Please Enter a Valid E-mail Address! you@yourdomain.com")
document.qform.EmailID.focus();
return (false)
}	

}
function disable_return()
{
	
if(document.getElementById('r1').checked==true)
{
document.getElementById('Departure_date').style.display = 'none';

return true;
}
if(document.getElementById('r2').checked==true)
{
document.getElementById('Departure_date').style.display = 'block';

return true;
}
}
