hotelIDs = new Array();
function clickViewCompareSort(url) {
if(url == "")
{
  alert("Please Select the Sorting Order");
}
else
{
	// alert("in search");
window.open("http://www.travelnow.com/hotels/hotnetlist.jsp?cid=80233&city=london&stateProvince=&country=GB&"+url+"&"+getViewCompareHotels()+"&showUserHotels=true");
}
}

function getViewCompareHotels() {
var hotelQueryString = "";
for (var i=0; i < hotelIDs.length; i++) {
if (hotelIDs[i] != undefined) {
hotelQueryString += "&userHotelIDs=" + hotelIDs[i];
}
}
return hotelQueryString;
}


function MapAllHotels(murl) {
window.open(murl,'HRNMap','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=480');
}
