function jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function popUpBooking(hotel_district,hotel_region,hotel_name){
	if(hotel_name!=""){
		booking_url ="https://www.hotelsbookingcenter.com/ssl/reservation.php?region="+hotel_region+"&hotelname="+hotel_name+"&ct="+hotel_district+"&title=Hotel-Reservation-Form&dn=all-discount-hotels.biz";
	}
	else{
		booking_url ="https://www.hotelsbookingcenter.com/ssl/reservation.php?dn=all-discount-hotels.biz";
	}
	window.open(booking_url,'BookingForm','width=750,height=500,scrollbars=yes,status=yes');
}
