// JavaScript Document
function ShowPanorama(what, RealHeight){

	if (self.innerWidth){
		ScreenWidth = self.innerWidth;
		ScreenHeight = self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientWidth){
		ScreenWidth = document.documentElement.clientWidth;
		ScreenHeight = document.documentElement.clientHeight;
	} else if (document.body){
		ScreenWidth = document.body.clientWidth;
		ScreenHeight = document.body.clientHeight;
	}
	if(navigator.appName == 'Microsoft Internet Explorer'){ 
		ScreenHeight = screen.availHeight - 91;
	} else {
		ScreenHeight = screen.availHeight - 65;
	}
	
	var SceenHightToUse = screen.availHeight;
	
	if (ScreenHeight > RealHeight){
		ScreenHeight = RealHeight;		
		SceenHightToUse = RealHeight;
	}
	SceenHightToUse = SceenHightToUse + 16;

	what = what.replace("1280","");
	what = what.replace("800","");
	//what = "PanoramaPopUp.php?Panorama=" + what;
	//window.open(what,"_blank","top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width="+ScreenWidth+", height="+ScreenHeight)
	
	myWindow=window.open(what,'',"top=0, left=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width="+screen.availWidth+", height="+SceenHightToUse);
	myWindow.document.write("<img src='"+what+"' height='"+ScreenHeight+"' style='position: absolute; top: 0px; left: 0px;' />");
	//myWindow.document.write("<img src='"+what+"' height='"+ScreenHeight+"' title='Click to close window' style='position: absolute; top: 0px; left: 0px; cursor: pointer;' onclick='window.close()' />");
	
	myWindow.focus();
	
}
