function set_date() {
var outday=document.forms['afpForm'].outday.selectedIndex;
var outmonth=document.forms['afpForm'].outmonth.selectedIndex;
var calendar=new Date();
var advpurchase=1+3;


calendar.setDate(calendar.getDate()+advpurchase);
document.forms['afpForm'].outday.selectedIndex=calendar.getDate()-1;
document.forms['afpForm'].outmonth.selectedIndex=calendar.getMonth();
calendar.setDate(calendar.getDate()+7);
document.forms['afpForm'].retday.selectedIndex=calendar.getDate()-1;
document.forms['afpForm'].retmonth.selectedIndex=calendar.getMonth();
}
setTimeout ('set_date()',100);

function progress() {
document.forms['afpForm'].action="http://www.travelstoremaker.com/cgit/porch?agentid=unitedtr";
document.forms['afpForm'].method="get";
document.forms['afpForm'].submit();
return false;
}