
function showimgHotel (idhotel, idobrazek, lang, width, height)
{
	width = 2000;
	height = 2000;
	
	aw = screen.availWidth;
	ah = screen.availHeight;
	
	if (width  > aw-40) width = aw-40;
	if (height > ah-80) height = ah-80;
	
	xpos = (aw - width)/2;
	ypos = (ah - height)/2 - 30;
	
	window.open("HotelImageShow.aspx?idhotel=" + idhotel + "&idobrazek=" + idobrazek + "&lang=" + lang, "pic", "width=" + width + ",height=" + height + ",left=" + xpos + ",top=" + ypos + ",scrollbars=1,menubar=0,status=1,toolbar=0,resizable=1").focus();
}


function go_hotel_lang ( idhotel, lang )
{
	uri = "HotelDetail.aspx?idhotel=" + idhotel + "&lang=" + lang;
	
	aw = screen.availWidth;
	ah = screen.availHeight;
	
	width = 640;
	height = ah-130;
	
	xpos = (aw - width)/2;
	ypos = (ah - height)/2 - (130 - 10)/2;
	
	window.open(uri, "hotel", "width=" + width + ",height=" + height + ",left=" + xpos + ",top=" + ypos + ",scrollbars=1,menubar=1,status=1,resizable=1").focus();
}

function go_hotel_full ( idhotel, lang )
{
	uri = "HotelDetail.aspx?idhotel=" + idhotel + "&lang=" + lang + "&showfull=true";
	
	aw = screen.availWidth;
	ah = screen.availHeight;
	
	width = 640;
	height = ah-130;
	
	xpos = (aw - width)/2;
	ypos = (ah - height)/2 - (130 - 10)/2;
	
	window.open(uri, "hotel", "width=" + width + ",height=" + height + ",left=" + xpos + ",top=" + ypos + ",scrollbars=1,menubar=1,status=1,resizable=1").focus();
}