
$(pageSetup);
function pageSetup() {
try {
var pageId = $("#t-page-info-fragment input[name='pageid']").val().toLowerCase();
var destination = getQueryValue("to");
if(destination && (destination.toLowerCase() == "not found")) {
destination = null;
}
var promoCode = getQueryValue("promoCode");
if(promoCode && (promoCode.toLowerCase() == "not found")) {
promoCode = null;
}
switch(pageId) {
case "hotels": {
$("#hotelGO").click();
if(destination) {
$("#hotelGOTo").attr("value", destination);
}
if(promoCode) {
$("#BAHPRESpecialOfferGroup").attr("value", promoCode);
}
break;
}
case "car-rental": {
$("#carGO").click();
if(destination) {
$("#carGOTo").attr("value", destination);
}
if(promoCode) {
$("#BAHPRESpecialOfferGroup").attr("value", promoCode);
}
break;
}
case "sightseeing": {
if(destination) {
$("#expGOTo").attr("value", destination);
}
}
}
}
catch(e) {
alert(e.toString());
}
}
