var Hotel_Booking_Page = "/de/reservieren.html";
var Language = "d";
var MonthName=new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");
var ArrDate = "<strong>Ankunftstag</strong>";
var Nights = "Anzahl Nächte";
var Single = "Einzelzimmer";
var Double = "Doppelzimmer";
var SearchButton = "Verfügbarkeit prüfen";
 
var Hotel_ID = "wannerboeblingen";
var today = new Date();
var day=today.getDate();
var month = today.getMonth();
document.write("<form action='",Hotel_Booking_Page,"' method='get'>");
document.write("<input type='hidden' name='hotel_id' value='",Hotel_ID,"'>");
document.write("<input type='hidden' name='spr' value='",Language,"'>");
document.write("<input type='hidden' name='modus' value='quick-res'>"); 
document.write("<font face='Arial' size='2'>"); 
document.write(ArrDate,":<br>");
document.write("<nobr><select name='anktt' size='1'>");
for (i = 1; i <= 31; i++) {
 document.write("<option");
 if (i == day) document.write(" selected");
 document.write(">",i,"</option>");
}
document.write("</select>");
document.write("<select class='ankmm' name='ankmm' size='1'>");
for (i = 0; i < 12; i++) {
 document.write("<option value=", i+1);
 if (i == month) document.write(" selected");
 document.write(">",MonthName[i],"</option>");
}
document.write("</select></nobr><p>");
document.write("<nobr>",Nights,": ");
document.write("<select name='tage' size='1'>");
for (i = 1; i <= 60; i++) {
 document.write("<option>",i,"</option>");
}
document.write("</select></nobr><p>");
document.write("<nobr><select name='anzahlez' size='1'>");
document.write("<option>-</option>");
for (i = 1; i <= 3; i++) {
 document.write("<option");
 if (i == 1) document.write(" selected");
 document.write(">",i,"</option>");
}
document.write("</select>");
document.write(" ",Single,"</nobr><br>");
document.write("<nobr><select name='anzahldz' size='1'>");
document.write("<option>-</option>");
for (i = 1; i <= 3; i++) {
 document.write("<option>",i,"</option>");
}
document.write("</select>");
document.write(" ",Double,"</nobr><p>");
document.write("<input type='submit' value='",SearchButton,"'class='quickchecksubmit'>"); 
document.write("</font>"); 
document.write("</form>");
