<!--
function set_date() {
	var depd=document.afpForm.depd.selectedIndex;
	var depm=document.afpForm.depm.selectedIndex;
	var calendar=new Date();
	var advpurchase=10;
	calendar.setDate(calendar.getDate()+advpurchase);
	document.afpForm.depd.selectedIndex=calendar.getDate()-1;
	document.afpForm.depm.selectedIndex=calendar.getMonth();
	calendar.setDate(calendar.getDate()+7);
	document.afpForm.retd.selectedIndex=calendar.getDate()-1;
	document.afpForm.retm.selectedIndex=calendar.getMonth();
}
setTimeout ('set_date()',50);
-->





