
$(pageSetup);
function pageSetup() {
try {
$("#hotelGO").click();
var promoCode = getQueryValue("promoCode");
if(promoCode && (promoCode.toLowerCase() == "not found")) {
promoCode = null;
}
if(promoCode) {
$("#BAHPRESpecialOfferGroup").attr("value", promoCode);
}
var destination = getQueryValue("to");
if(destination && (destination.toLowerCase() == "not found")) {
destination = null;
}
if(destination) {
setDPDestination('hotel', destination);
}
}
catch(e) {
alert(e.toString());
}
}

