  function intialdate(theForm)
  {
         var today=new Date();
         theForm.Date.selectedIndex=(today.getDate()-1);    
         theForm.Month.selectedIndex=today.getMonth();
		 if (theForm.Date2 && theForm.Month2)
		 {
			theForm.Date2.selectedIndex=(today.getDate()-1);
			theForm.Month2.selectedIndex=today.getMonth();
		 }
         
 }  

