today=new Date();
document.HotSrch.outmonth.value=today.getMonth()+1;
document.HotSrch.outday.value=today.getDate();
document.HotSrch.outyear.value=today.getYear();
var tomorrow = new Date(today.getTime() + 1000 * 60 * 60 * 24 * 2)
document.HotSrch.retmonth.value=tomorrow.getMonth()+1;
document.HotSrch.retday.value=tomorrow.getDate();
document.HotSrch.retyear.value=tomorrow.getYear();

function MoreOptions() {
switch(document.HotSrch.Currency.value) {
case 'USD':
searchpage = 'http://travel.wwte1.com/pubspec/scripts/eap.asp?GOTO=HOTWIZ&amp;EAPID='+document.HotSrch.USD.value+'&amp;rfrr='+document.HotSrch.RFRR.value+'&amp;MOREOPTIONS=1';
document.location = searchpage;
break;
case 'EUR':
searchpage = 'http://euro.wwte7.com/pubspec/scripts/eap.asp?GOTO=HOTWIZ&amp;EAPID='+document.HotSrch.EUR.value+'&amp;rfrr='+document.HotSrch.RFRR.value+'&amp;MOREOPTIONS=1';
document.location = searchpage;
break;
case 'GBP':
searchpage = 'http://uk.wwte4.com/pubspec/scripts/eap.asp?GOTO=HOTWIZ&amp;EAPID='+document.HotSrch.GBP.value+'&amp;rfrr='+document.HotSrch.RFRR.value+'&amp;MOREOPTIONS=1';
document.location = searchpage;
break;
case 'CND':
break;
case 'BRP':
break;
}  
}

function ProcessHotels() {
switch(document.HotSrch.Currency.value) {
case 'USD':
document.HotSrch.action = 'http://travel.wwte1.com/pubspec/scripts/eap.asp';
document.HotSrch.EAPID.value = document.HotSrch.USD.value;
outdate1=document.HotSrch.outmonth.value+"/"+document.HotSrch.outday.value+"/"+document.HotSrch.outyear.value;
document.HotSrch.InDate.value=outdate1;
retdate1=document.HotSrch.retmonth.value+"/"+document.HotSrch.retday.value+"/"+document.HotSrch.retyear.value;
document.HotSrch.OutDate.value=retdate1;
break;
case 'EUR':
document.HotSrch.action = 'http://euro.wwte7.com/pubspec/scripts/eap.asp';
document.HotSrch.EAPID.value = document.HotSrch.EUR.value;
outdate1=document.HotSrch.outday.value+"/"+document.HotSrch.outmonth.value+"/"+document.HotSrch.outyear.value;
document.HotSrch.InDate.value=outdate1;
retdate1=document.HotSrch.retday.value+"/"+document.HotSrch.retmonth.value+"/"+document.HotSrch.retyear.value;
document.HotSrch.OutDate.value=retdate1;
break;
case 'GBP':
document.HotSrch.action = 'http://uk.wwte4.com/pubspec/scripts/eap.asp';
document.HotSrch.EAPID.value = document.HotSrch.GBP.value;


outdate1=document.HotSrch.outday.value+"/"+document.HotSrch.outmonth.value+"/"+document.HotSrch.outyear.value;
document.HotSrch.InDate.value=outdate1;
retdate1=document.HotSrch.retday.value+"/"+document.HotSrch.retmonth.value+"/"+document.HotSrch.retyear.value;
document.HotSrch.OutDate.value=retdate1;
break;
case 'CND':
break;
case 'BRP':
break;
}
return true;
}