function BookHotel1()
			{
				
				iRet = window.open("http://www.choicehotels.ca/hotels/availabilityResults?srp="	
				+ document.frmhotelBook.LeftMenu1_srp.value + "&month=" 
				+ document.frmhotelBook.month.value + "&day=" 
				+ document.frmhotelBook.day.value + "&depart_month=" 
				+ document.frmhotelBook.depart_month.value + "&depart_day=" 
				+ document.frmhotelBook.depart_day.value + "&nadult=" 
				+ document.frmhotelBook.nadult.value  + "&nchild="
				+ document.frmhotelBook.nchild.value + "&minisrp="
				+ document.frmhotelBook.minisrp.value + "&hotel=CN042&find.x=13&find.y=10");   
				
			}
////http://www.choicehotels.ca/hotels/home?
function BookHotel()
			{
			
			
		
			        var fYear = getObj("arrivalMonthYear").value.substring(0,4);
        var fmonth = getObj("arrivalMonthYear").value.substring(4,6);
        
        var tYear = getObj("departureMonthYear").value.substring(0,4);
        var tmonth = getObj("departureMonthYear").value.substring(4,6);
        
        if (fmonth.substring(0,1) == "0"){
			
            fmonth = fmonth.substring(1,2);			
         }        
         fmonth = parseFloat(fmonth)+1;
        
        
        if (tmonth.substring(0,1) == "0"){        
           tmonth = tmonth.substring(1,2);   		  
         }
        
          tmonth = parseFloat(tmonth)+1;
        

 iRet = window.open( "http://www.choicehotels.ca/rooms/CN042?srp="+document.frmhotelBook.LeftMenu1_srp.value+"&checkin="+ getObj("arrivalDay").value +"-"+fmonth+"-"+fYear+"&checkout="+ getObj("departureDay").value +"-"+tmonth+"-"+tYear);	
				
				
  
				
//window.open( "http://www.choicehotels.ca/rooms/CN042?srp="+document.frmhotelBook.LeftMenu1_srp.value +"&checkin="+ arrDay +"-"+ arrmonth +"-"+ arrYear +"&checkout="+ depDay +"-"+ depmonth +"-"+ depYear);
				
			}

