//<script langage="javascript">
//<!--
   //start new script code
   // Checks if browser is Netscape 2.0x since the options array properties don't work with Netscape 2.0x
    function isBrowserSupp() {
        // Get the version of the browser
        version =  parseFloat( navigator.appVersion );

        if ( ( version >= 2.0 ) && ( version < 2.1 ) && ( navigator.appName.indexOf( "Netscape" ) != -1 ) ) {
            return false;
        } else {
            return true;
        }

        return true;
    }

    function isLeapYear( yrStr ) {
        var leapYear = false;
        var year = parseInt( yrStr, 10 );
        // every fourth year is a leap year
        if ( year % 4 == 0 ) {
            leapYear = true;
            // unless it's a multiple of 100
            if( year % 100 == 0 ) {
                leapYear = false;
                // unless it's a multiple of 400
                if( year % 400 == 0 ) {
                    leapYear=true;
                }
            }
        }
        return leapYear;
    }

    function getDaysInMonth( mthIdx, YrStr ) {
        // all the rest have 31
        var maxDays = 31
        // expect Feb. (of course)
        if( mthIdx == 1 ) {
            if( isLeapYear( YrStr ) ) {
                maxDays=29;
            } else {
                maxDays=28;
            }
        }

        // thirty days hath...
        if( mthIdx == 3 || mthIdx == 5 || mthIdx == 8 || mthIdx == 10 ) {
            maxDays=30;
        }
        return maxDays;
    }

    //the function which does some magic to the date fields
    // return non-zero if it is the last day of the month
    function adjustDate( mthIdx, Dt ) {
        var value = 0;

        var today = new Date()
        var theYear = parseInt( today.getYear(), 10 )

        if( mthIdx < today.getMonth() ) {
            theYear = ( parseInt( today.getYear(), 10 ) + 1 )
        }
        if( theYear < 100 ) {
            theYear = "19" + theYear
        } else {
            if( ( theYear - 100 ) < 10 ) {
                theYear = "0" + ( theYear - 100 )
            } else {
                theYear = ( theYear - 100 ) + ""
            }
            theYear = "20" + theYear
        }


        var numDays = getDaysInMonth( mthIdx, theYear );

        if( mthIdx == 1 ) {
            if( Dt.options.selectedIndex + 1 < numDays ) {
                return 0;
            } else {
                Dt.options.selectedIndex=numDays - 1;
                //check for leap year
                if( numDays == 29 ) {
                    return 99;
                } else {
                    return 1;
                }
            }
        }

        if( Dt.options.selectedIndex + 1 < numDays ) {
            value = 0;
        } else {
            if ( Dt.options.selectedIndex + 1 > numDays ) {
                Dt.options.selectedIndex--;
                value = 3;
            } else {
                //index is 31 or 30
                value = 2;
            }
        }
        return value;
    }

    //changes departure month when arrival month is changed
    function amadChange( inM, inD, outM, outD ) {
        if ( !isBrowserSupp() ) {
            return;
        }

        var res = adjustDate( inM.options.selectedIndex, inD );
        if( res != 0 ) {
               outD.options.selectedIndex = 0;
               if ( outM.options.selectedIndex == 11 ) {
                    outM.options.selectedIndex = 0
               } else {
                    outM.options.selectedIndex=inM.options.selectedIndex + 1;
                    outD.options.selectedIndex = 1;
               }
        } else {
            outM.options.selectedIndex = inM.options.selectedIndex;
            if (outD.options.selectedIndex <= inD.options.selectedIndex) {
                outD.options.selectedIndex = inD.options.selectedIndex + 2;
            }
        }
        return;
    }


    function dmddChange( outM, outD ) {
        if ( !isBrowserSupp() ) {
            return;
        }

        adjustDate( outM.options.selectedIndex, outD );
        return;
    }

function loadDates(arrivalMonthSelect,  arrivalDaySelect, departureMonthSelect, departureDaySelect)
{
	var calendar = new Date();
	var calendar2 = new Date();
	var cal
	var cal2
	var date;
	var month;
	var year;
	var date2;
	var month2;
	var year2;

	//Here is the variable to change for to advance the arrival Date
	 var advanceArrival = 14;
	//Here is the variable to change for to advance the departure Date
	 var advanceDeparture = 16;


	//Set the arrival Days
	calendar.setDate(calendar.getDate()+ advanceArrival);
	date = calendar.getDate();
	month = calendar.getMonth();

	//Set the Departure Days
	calendar2.setDate(calendar2.getDate()+advanceDeparture);
	date2 = calendar2.getDate();
	month2 = calendar2.getMonth();

	arrivalMonthSelect.value=month;
	arrivalDaySelect.value=date;
	departureMonthSelect.value=month2;
	departureDaySelect.value=date2;
}

    function OpenWindow(file, name, width, height) {
        OpenWindow(file, name, width, height, false);
    }

    function OpenWindow(file, name, width, height, showLeftTopScrollbar) {
        var attr = "";
        if(showLeftTopScrollbar) {
            attr += "top=50,left=50,scrollbars=1,";
        }
        attr += "width=" + width + ",height=" + height + ",resizeable=1";
        window.open(file, name, attr);
    }


//-->
//</script>

document.writeln('<link rel="stylesheet" href="hotelid-form.css" type="text/css">')

function SearchhotelID(hotelid){
document.writeln('<table cellspacing="0" cellpadding="10" border="0" width="100%" class="index-table-border">')
document.writeln('<tr><td class="index-select-dest-bg">')
document.writeln('<table cellspacing="0" cellpadding="0" border="0" width="100%">')
document.writeln('<form action="http://booking.hotels-onclick.com/index.jsp?pageName=hotAvail&cid=83558&isHotels=true&isCondos=false&hotelID=',hotelid,'&passthrough=true" method="POST" name="hotForm">')
document.writeln('<tr>')
document.writeln('<td>')
document.writeln('<table width="100%" border="0" cellspacing="0" cellpadding="2">')
document.writeln('<tr>')
document.writeln('<td width="50%" nowrap class="index-text">Arrival Date:<br/>')
document.writeln('<select class="form-select" name="arrivalMonth" onchange="javascript:amadChange(document.hotForm.arrivalMonth, document.hotForm.arrivalDay, document.hotForm.departureMonth, document.hotForm.departureDay);">')
document.writeln(' <option value=0>January</option>')
document.writeln('<option value=1>February</option>')
document.writeln('<option value=2>March</option>')
document.writeln('<option value=3>April</option>')
document.writeln('<option value=4>May</option>')
document.writeln('<option value=5>June</option>')
document.writeln('<option value=6>July</option>')
document.writeln('<option value=7>August</option>')
document.writeln('<option value=8>September</option>')
document.writeln('<option value=9>October</option>')
document.writeln('<option value=10>November</option>')
document.writeln('<option value=11>December</option>')
document.writeln('</select>')
document.writeln('<select class="form-select" name="arrivalDay" onchange="amadChange(document.hotForm.arrivalMonth, document.hotForm.arrivalDay, document.hotForm.departureMonth, document.hotForm.departureDay)">')
document.writeln('    <option value=1>1</option>')
document.writeln('    <option value=2>2</option>')
document.writeln('    <option value=3>3</option>')
document.writeln('    <option value=4>4</option>')
document.writeln('    <option value=5>5</option>')
document.writeln('    <option value=6>6</option>')
document.writeln('    <option value=7>7</option>')
document.writeln('    <option value=8>8</option>')
document.writeln('    <option value=9>9</option>')
document.writeln('    <option value=10>10</option>')
document.writeln('    <option value=11>11</option>')
document.writeln('    <option value=12>12</option>')
document.writeln('    <option value=13>13</option>')
document.writeln('    <option value=14>14</option>')
document.writeln('    <option value=15>15</option>')
document.writeln('    <option value=16>16</option>')
document.writeln('    <option value=17>17</option>')
document.writeln('    <option value=18>18</option>')
document.writeln('    <option value=19>19</option>')
document.writeln('    <option value=20>20</option>')
document.writeln('    <option value=21>21</option>')
document.writeln('    <option value=22>22</option>')
document.writeln('    <option value=23>23</option>')
document.writeln('    <option value=24>24</option>')
document.writeln('    <option value=25>25</option>')
document.writeln('    <option value=26>26</option>')
document.writeln('    <option value=27>27</option>')
document.writeln('    <option value=28>28</option>')
document.writeln('    <option value=29>29</option>')
document.writeln('    <option value=30>30</option>')
document.writeln('    <option value=31>31</option>')
document.writeln('</select>')
document.writeln('</td>')
document.writeln('<td width="50%" nowrap class="index-text">')
document.writeln('Departure Date:<br/>')
document.writeln('    <select class="form-select" name="departureMonth" onchange="javascript:dmddChange(document.hotForm.departureMonth,document.hotForm.departureDay);">    ')
document.writeln('<option value=0>January</option>')
document.writeln('<option value=1>February</option>')
document.writeln('<option value=2>March</option>')
document.writeln('<option value=3>April</option>')
document.writeln('<option value=4>May</option>')
document.writeln('<option value=5>June</option>')
document.writeln('<option value=6>July</option>')
document.writeln('<option value=7>August</option>')
document.writeln('<option value=8>September</option>')
document.writeln('<option value=9>October</option>')
document.writeln('<option value=10>November</option>')
document.writeln('<option value=11>December</option>')
document.writeln('    </select>')
document.writeln('    <select class="form-select" name="departureDay" onchange="dmddChange(document.hotForm.departureMonth,document.hotForm.departureDay)">')
document.writeln('        <option value=1>1</option>')
document.writeln('        <option value=2>2</option>')
document.writeln('        <option value=3>3</option>')
document.writeln('        <option value=4>4</option>')
document.writeln('        <option value=5>5</option>')
document.writeln('        <option value=6>6</option>')
document.writeln('        <option value=7>7</option>')
document.writeln('        <option value=8>8</option>')
document.writeln('        <option value=9>9</option>')
document.writeln('        <option value=10>10</option>')
document.writeln('        <option value=11>11</option>')
document.writeln('        <option value=12>12</option>')
document.writeln('        <option value=13>13</option>')
document.writeln('        <option value=14>14</option>')
document.writeln('        <option value=15>15</option>')
document.writeln('        <option value=16>16</option>')
document.writeln('        <option value=17>17</option>')
document.writeln('        <option value=18>18</option>')
document.writeln('        <option value=19>19</option>')
document.writeln('        <option value=20>20</option>')
document.writeln('        <option value=21>21</option>')
document.writeln('        <option value=22>22</option>')
document.writeln('        <option value=23>23</option>')
document.writeln('        <option value=24>24</option>')
document.writeln('        <option value=25>25</option>')
document.writeln('        <option value=26>26</option>')
document.writeln('        <option value=27>27</option>')
document.writeln('        <option value=28>28</option>')
document.writeln('        <option value=29>29</option>')
document.writeln('        <option value=30>30</option>')
document.writeln('        <option value=31>31</option>')
document.writeln('    </select>')
document.writeln('</td>')
document.writeln('</tr>')
document.writeln('<tr>')
document.writeln('<td colspan="2" nowrap class="index-text">')
document.writeln('</td>')
document.writeln('</tr>')
document.writeln('<tr>')
document.writeln('<td colspan="2" height="5">')
//document.writeln('<script langage="javascript">loadDates(document.hotForm.arrivalMonth,  document.hotForm.arrivalDay, document.hotForm.departureMonth, document.hotForm.departureDay)</script>')

loadDates(document.hotForm.arrivalMonth,  document.hotForm.arrivalDay, document.hotForm.departureMonth, document.hotForm.departureDay);

document.writeln('</td>')
document.writeln('</tr>')
document.writeln('<tr>')
document.writeln('<td colspan="2" rowspan="2" align="right"><input type="submit" name="Submit" value="BOOK NOW" class="button2" ></td>')
document.writeln('</tr>')
document.writeln('</table>')
document.writeln('</td>')
document.writeln('</tr>')
document.writeln('<input type="hidden" name="submitted" value="true"/>')
document.writeln('<input type="hidden" name="avail" value="true"/>')
document.writeln('<input type="hidden" name="pickUpLocation" value="A">')
document.writeln('<input type="hidden" name="passThrough" value="true">')
document.writeln('<input type="hidden" name="locale" value="en_US"/>')
document.writeln('</form>')
document.writeln('</table>')
document.writeln('</td></tr></table>                ')

}