function MapPopup(theURL,winName,features)
{
	fileWindow = "http://www.travelnow.com/popups/maps/mapPopup.jsp?cmd=Find&HotelLyr=Off&ClickMode=Center";
	fileWindow += theURL;
    window.open(fileWindow,winName,features);
}


				function setTodaysDate(monthControl, dateControl,
					yearControl) {
					var today=new Date();
		//java months start at zero
		monthControl.selectedIndex=today.getMonth();
		//dates begin at 1
		dateControl.selectedIndex=(today.getDate()-1);
		//years start at 2002
		yearControl.selectedIndex=(today.getFullYear()-2003);
		}

		function setCheckOutDate(monthCheckOut, dateCheckOut,
yearCheckOut) {
		var today=new Date();
		//java months start at zero
		if (today.getDate()>26)
		    monthCheckOut.selectedIndex=(today.getMonth()+1);		   
       else
            monthCheckOut.selectedIndex=today.getMonth();		         
		//dates begin at 1
		if (today.getDate()>26)
		     dateCheckOut.selectedIndex=(4-(31-(today.getDate())));
		else
		     dateCheckOut.selectedIndex=(today.getDate()+3);
		yearCheckOut.selectedIndex=(today.getFullYear()-2003);
				}
