﻿// JScript-Datei
var popupWin
function openPano(panoId, width, height) {
	var url = 'http://www.hessen-panorama.de/pano2/pano.asp?id='+panoId;
	if (document.all)
		var xMax = screen.width, yMax = screen.Height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 800, yMax=600;
	var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;
	var xOffset = 100, yOffset = 100;

	if (popupWin){
		popupWin.close();
	}
	popupWin = window.open(url,'pano','width='+width+',height='+height+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=no,toolbars=no,menubar=no,resizable=no');
}


function openVT(tourId, width, height) {
	var url = 'http://www.hessen-panorama.de/pano2/vt.asp?id='+tourId;
	if (document.all)
		var xMax = screen.width, yMax = screen.Height;
	else
		if (document.layers)
			var xMax = window.outerWidth, yMax = window.outerHeight;
		else
			var xMax = 800, yMax=600;
	var xOffset = (xMax - 200)/2, yOffset = (yMax - 200)/2;
	var xOffset = 100, yOffset = 100;

	if (popupWin){
		popupWin.close();
	}
	popupWin = window.open(url,'virtualtour','width='+width+',height='+height+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+',scrollbars=no,toolbars=no,menubar=no,resizable=no');
}