<!-- Begin
function selectaplace(form) {
var appname= navigator.appName;
var appversion=parseInt(navigator.appVersion);
if (appname == "Netscape" && appversion >= 3) {
var formindex=form.select1.selectedIndex;
var storage=form.select1.options[formindex].text;
if (form.select1.options[formindex].value != "none") {
var msg=storage+"You are now being transferred to the -> "+storage;
for (var spot=0;spot<msg.length-storage.length;spot++) {
var x=msg.substring(spot,msg.length);
form.select1.options[formindex].text=x;
for(var d=0;d<150;d++) { };
}
window.location=form.select1.options[formindex].value;
form.select1[formindex].text=storage;
} else {
form.select1[formindex].text="Not a real option!";
for(var d=0;d<1250;d++) { };
form.select1[formindex].text=storage;
}
}
else {
var formindex=form.select1.selectedIndex;
window.location=form.select1.options[formindex].value;
}
}
function makeMyMenu() {
document.write ('<form><select name="select1" onChange="selectaplace(this.form)" style="font-family:verdana; font-size:13px; width:350px;">');
document.write ('<option value=#top>Select a Help Topic');
document.write ('<option value=/reservations_lookup.php>View an Existing Reservation');
document.write ('<option value=#hotel_change>Change a Reservation');
document.write ('<option value=/reservations_lookup.php>Cancel a Reservation');
document.write ('<option value=#hotel_cancel_policy>Cancellation Policies');
document.write ('<option value=#hotel_confirm>Confirmation of Booking');
document.write ('<option value=#hotel_saverates>Save Rate Hotels');
document.write ('<option value=#hotel_multiroom>Multiple Room Reservations and Group Bookings');
document.write ('<option value=#hotel_bestrate>Best Rate Guarantee');
document.write ('<option value=#hotel_specials>Special Rates and Discounts');
document.write ('<option value=#hotel_checkinout>Check-in/Check-out Information');
document.write ('<option value=#hotel_occupancy>Room Occupancy');
document.write ('<option value=#hotel_requests>Special Requests');
document.write ('<option value=#hotel_refunds>Refunds');
document.write ('<option value=#hotel_receipts>Receipts');
document.write ('<option value=#hotel_creditcards>Credit Cards');
document.write ('<option value=#hotel_security>Security and Privacy');
document.write ('<option value=#hotel_contact>Customer Service Department');
document.write ('</select>');
document.write ('</form>');
}
makeMyMenu();
// End -->
