function GoBooking()
{
	var strLink;
	var CImonth, CIday, COmonth,COday,NumOfAdult
	
	CImonth = document.getElementById('CIM').value;
	CIday = document.getElementById('CID').value;
	COmonth = document.getElementById('COM').value;
	COday = document.getElementById('COD').value;
	programs = document.getElementById('programs').value;
	adults = document.getElementById('adults').value;
	kids = document.getElementById('kids').value;
	

	if (CImonth=="January") {CImonth=1}
	else if (CImonth=="February") {CImonth=2}
	else if (CImonth=="March") {CImonth=3}
	else if (CImonth=="April") {CImonth=4}
	else if (CImonth=="May") {CImonth=5}
	else if (CImonth=="June") {CImonth=6}
	else if (CImonth=="July") {CImonth=7}
	else if (CImonth=="August") {CImonth=8}
	else if (CImonth=="Setpember") {CImonth=9}
	else if (CImonth=="October") {CImonth=10}
	else if (CImonth=="November") {CImonth=11}
	else if(CImonth=="December") {CImonth=12}
	
	if (COmonth=="January") {COmonth=1}
	else if ((COmonth=="February")||(COmonth=="Feburary")) {COmonth=2}
	else if (COmonth=="March") {COmonth=3}
	else if (COmonth=="April") {COmonth=4}
	else if (COmonth=="May") {COmonth=5}
	else if (COmonth=="June") {COmonth=6}
	else if (COmonth=="July") {COmonth=7}
	else if (COmonth=="August") {COmonth=8}
	else if (COmonth=="Setpember") {CImonth=9}
	else if (COmonth=="October") {COmonth=10}
	else if (COmonth=="November") {COmonth=11}
	else if (COmonth=="December") {COmonth=12}
	
	strLink="http://www.comfortsuites.com/ires/en-US/html/RateDisplay?hotel=FL924&month="+CImonth+"&day="+CIday+"&depart_month="+COmonth+"&depart_day="+COday+"&nadult="+adults+"&nchild="+kids
	//alert (strLink);
	//window.open(pageTracker._getLinkerUrl(strLink),'','');
	window.open(strLink,'','');
}

    function setForm() {
      var s = document.booking_mask.getElementsByTagName('select');
      for (var i=0; i<s.length; i++) {
        selectReplacement(s[i]);
      }
    }
    window.onload = function() {
      (document.all && !window.print) ? null : setForm();
    };