// var shhHotels = new Array();

function shh_viewhotel(id)
{
	var server = "http://www.suncanihvar.com";
	// var langversion = "en";
	var hotelUrls = new Array(); 
	hotelUrls['-'] = "hotels.html"
	hotelUrls['c2ffe924d4d40bb13ba38135d64b4870'] = "adriana-hvar-spa-hotel.html"
	hotelUrls['2b62b28b610ce52dfef50d7711706e76'] = "amfora-hvar-grand-beach-resort.html";
	hotelUrls['7cd6104971011f7e5c7fc601c22f53c7'] =	"riva-hvar-yacht-harbour-hotel.html";
	hotelUrls['5f2711b513f7f4d9a023e0c230eed655'] =	"the-palace-hvar.html";
	hotelUrls['cededea7fe5130abdaf75a6c540db37f'] =	"dalmacija-hvar-villa-hotel.html";
	hotelUrls['ea21b3bc9697a893d269c2e1dba29e91'] =	"pharos-hvar-bayhill-hotel.html";
	hotelUrls['40a548ea937df3731bba646929b74ba9'] =	"delfin-hvar-harbourcourt-hotel.html";
	hotelUrls['ae0c11ca5f18da5e6f73260283dcfc5b'] = "sirena-hvar-beachwood-hotel.html";

	var selHotel = document.getElementById(id);
	var selIndex = selHotel.selectedIndex;
	var url = hotelUrls[selHotel.options[selIndex].value];
	window.location = server + "/" + langversion + url; 
	// window.location = server + "/" + langversion + "/" + url; 
	return false;
}

