/*
function OpenPictWindow(pictUrl) 
{
	newWindow=window.open("","PictView",'toolbar=no,top=20,left=20,width=520,height=560');
	//document.getElementById("imgMain").src = pictUrl;
	newWindow.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Hotel "Union"</title></head><body style="background-color:#ccc;margin:0px;padding:0px;"><table style="margin:10px;width:500px;height:500px;padding:0px; border:1px solid #fff; vertical-align:middle; text-align:center;"><tr><td><img src="'+pictUrl+'" id="Img3" /></td></tr></table><div style="width:100%;text-align:center;"><a href="javascript:window.close()"><img src="Images/closebtn.gif" border="0" /></a></div></body></html>');
	//newWindow.resizeBy(image.width-newWindow.document.body.clientWidth,image.height-newWindow.document.body.clientHeight)
	newWindow.document.close();
	//image = new Image();
	//image.src = pictUrl;
	//imgwidth = image.width+20;
	//imgheight = image.height+60;
	//newWindow.resizeBy(imgwidth-newWindow.document.body.clientWidth,imgheight-newWindow.document.body.clientHeight);
    newWindow.focus()
}
*/

function OpenPhotoWindow(pictUrl,imgwidth,imgheight,translbl,lngSufix)
{
	var winwidth = imgwidth+70;
	var winheight = imgheight+120;
	newWindow=window.open("PhotoViewer"+lngSufix+".aspx?ImageUrl="+pictUrl+"&LangLbl="+translbl,"PhotoViewer",'scrollbars=yes,left=0,top=0,width=0,height=0,TOOLBAR=no,LOCATION=no,DIRECTORIES=no,STATUS=no,MENUBAR=no,RESIZABLE=yes');//,width='+winwidth+',height='+winheight);
	newWindow.resizeTo(winwidth,winheight);
	newWindow.focus()
}

function OpenRoomPhotoWindow(roomId, tekst, lngSufix)
{
	newWindow=window.open("RoomPhotoViewer"+lngSufix+".aspx?RoomId="+roomId+"&tekst="+tekst,"RoomPhotoViewer",'scrollbars=yes,left=0,top=0,width=700,height=560,TOOLBAR=no,LOCATION=no,DIRECTORIES=no,STATUS=no,MENUBAR=no,RESIZABLE=yes');//,width='+winwidth+',height='+winheight);
	newWindow.focus()
}