function setTodaysDate(monthCheckOut,dateCheckOut,yearCheckOut) {
		var today=new Date();
		//java months start at zero
		if (today.getDate()>17)
		    monthCheckOut.selectedIndex=(today.getMonth()+1);		   
       else
            monthCheckOut.selectedIndex=today.getMonth();		         
		//dates begin at 1
		if (today.getDate()>17)
		     dateCheckOut.selectedIndex=(14-(31-(today.getDate())));
		else
		     dateCheckOut.selectedIndex=(today.getDate()+11);
                if (today.getDate()>17)
                      if (today.getMonth()>10)
                            yearCheckOut.selectedIndex=(today.getFullYear()-2002);		            
                      else
                            yearCheckOut.selectedIndex=(today.getFullYear()-2003);
                else
                 yearCheckOut.selectedIndex=(today.getFullYear()-2003);
                 if (today.getDate()>17)
                      if (today.getMonth()>10)
                             monthCheckOut.selectedIndex=0;
				}	
function openMap(url) {
		window.open(url, 'mapWindow', 'width=560,height=390,menubar=no,toolbar=no,scrollbars=yes,status=no,directories=no,location=no,resizable=auto');
	}