function changeDates(){

 document.MyOtherForm.StartDay.selectedIndex; 
 document.MyOtherForm.StartMonth.selectedIndex; 
 document.MyOtherForm.From_Year.selectedIndex; 
}

function setDates(){

//here we get todays date and load it into document.calc.start / end dates

monName = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
yearName = new Array(2002,2003);
now = new Date;
start_milliseconds =now.getTime();
start_milliseconds +=172800000;
now.setTime(start_milliseconds);
document.MyOtherForm.StartDay.selectedIndex = now.getDate()-1;
document.MyOtherForm.StartMonth.selectedIndex = now.getMonth(); 

if (navigator.appName == "Netscape")
{

document.MyOtherForm.StartYear.selectedIndex = now.getYear()-100;
}
else
{
document.MyOtherForm.StartYear.selectedIndex = now.getYear()-2002;
}
milliseconds = now.getTime();
milliseconds +=604800000; //number of milliseconds in seven days
now.setTime(milliseconds);





}


