<!-- Begin
function gonext(){
   var todaysdate = new Date();
   todaysdate.setDate(todaysdate.getDate() - 1);

   if(document.f.chk_in_date.value=="")
   {
     alert("plz enter Check In date");
	 document.f.chk_in_date.focus();
	 return false;
   }
if (Date.parse(document.f.chk_in_date.value) < Date.parse(todaysdate))
{
alert("Check In Date should not be less than current date");
document.f.chk_in_date.focus();
return false;
}
   
   if(document.f.chk_out_date.value=="")
   {
     alert("plz enter Check Out date");
	 document.f.chk_out_date.focus();
	 return false;
   }
   
  if (Date.parse(document.f.chk_in_date.value) > Date.parse(document.f.chk_out_date.value))
      {
       alert("The Check Out Date must be greater than the Check In Date.");
	   document.f.chk_out_date.focus();
      return false;
      }
document.f.method="post";
document.f.action="https://www.sellvel.com/northgatesd/step2.asp";
document.f.submit();
}

function doreset(){
document.f.chk_in_date.value="";
document.f.chk_in_date.value="";
document.f.adult.value="";
document.f.children.value="";

document.f.method="post";
 document.f.action="index.asp";
 document.f.submit();
}
//-->