function open_popup(img, width, height) {
	if (img && width && height) {
		x = (screen.availWidth/2)-(width/2);
     	y = (screen.availHeight/2)-(height/2);
		var popup =	window.open("/utils/image.php?imgsrc="+img,"Detail","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width="+width+",height="+height+",left="+x+",top="+y+",screenX="+x+",screenY="+y);
		popup.focus();
	}
	return;
}

function open_popup_url(url, lang) {

	var width     = 915;
	var height    = 480;
	var margintop = 20;

	h = maxHeight();
	w = maxWidth();

	x = (w/2)-(width/2);
 	y = (h/2)-(height/2);

 	var popup = document.getElementById('popup-div');

 	if (!popup) {

 		popup = document.createElement("div");
		popup.style.left = x + 'px';
		popup.style.top = (y - 25) + 'px';
		//popup.style.top = margintop + 'px';
		popup.id = 'popup-div';
		popup.style.width = width + 'px';
		popup.style.height = height + 'px';
		popup.style.position = 'absolute';
		popup.style.backgroundColor = '#ffffff';
		popup.style.backgroundImage = 'url("/images/popup_bg.gif")';
		//popup.innerHTML = '<div style="text-align:right; padding-top:20px;padding-bottom:20px;padding-right:30px;"><a href="javascript:close_popup();" style="cursor:hand; cursor:pointer;"><img src="/images/close_button.gif" width="11" height="11" /></a></div><iframe src="' + url + lang + '.html" width="890" height="410" frameborder="0" border="0"></iframe>';
		popup.innerHTML = '<div style="padding-top:20px;padding-left:20px;padding-right:20px;"><table width="100%" cellpadding="0" cellspacing="0"><tr><td align="left" style="padding-top:5px;padding-left:3px;"><a href="http://www.reichlundpartner.at" target="_blank"><img src="/images/reichlundpartner.gif" width="231" height="13" border="0" /></a></td><td align="right" valign="top" style="padding-right:10px;"><a href="#" onclick="javascript:close_popup(); return false;" style="color:#ff1600;cursor:hand;cursor:pointer;">schlie&szlig;en <img src="/images/close_button.gif" width="11" height="11" /></a></td></tr></table></div><iframe src="' + url + lang + '.php" width="880" height="385" frameborder="0" framespacing="0" border="0" style="margin-left:10px;margin-top:20px;"></iframe>';
		document.getElementById('site').appendChild(popup);

 	} else {
 		popup.style.display = 'block';
 	}

	/*
	x = (screen.availWidth/2)-(width/2);
 	y = (screen.availHeight/2)-(height/2);
	var popup =	window.open(url + lang + ".html", "Detail", "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width="+width+",height="+height+",left="+x+",top="+y+",screenX="+x+",screenY="+y);
	popup.focus();
	*/

	return;
}

function open_spotplayer(contentid, listpos) {
	if (contentid) {
		x = (screen.availWidth/2)-224;
     	y = (screen.availHeight/2)-146;
		var popup =	window.open("/utils/spotplayer.php?_language=de&contentid="+contentid+"&listpos="+listpos,"Videoplayer","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=448,height=292,left="+x+",top="+y+",screenX="+x+",screenY="+y);
		popup.focus();
	}
	return;
}

function open_gallery(galleryid) {
	if (galleryid) {
		x = (screen.availWidth/2)-224;
     	y = (screen.availHeight/2)-135;
		var popup =	window.open("/utils/gallery.php?_language=de&gallery="+galleryid,"Galerie","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=448,height=271,left="+x+",top="+y+",screenX="+x+",screenY="+y);
		popup.focus();
	}
	return;
}

function close_popup() {
	document.getElementById('popup-div').style.display = 'none';
	return;
}

function maxHeight() {
	var h=0;
	if (window.document.innerHeight>h)
	h=window.document.innerHeight;
	if (window.document.documentElement.clientHeight>h)
	h=window.document.documentElement.clientHeight;
	if (window.document.body.clientHeight>h)
	h=window.document.body.clientHeight;
	return h;
 }

function maxWidth() {
	var w=0;
	if (window.document.innerWidth>w)
	w=window.document.innerWidth;
	if (window.document.documentElement.clientWidth>w)
	w=window.document.documentElement.clientWidth;
	if (window.document.body.clientWidth>w)
	w=window.document.body.clientWidth;
	return w;
 }


function open_popup_url_book(domain, language) {

	var width     = 880;
	var height    = 700;
	var margintop = 0;

	h = maxHeight();
	w = maxWidth();

	x = (w/2)-(width/2);
 	y = (h/2)-(height/2);

 	var popup = document.getElementById('flash-catalog');

 	if (!popup) {

 		popup = document.createElement('div');
		popup.style.left = x + 'px';
		popup.style.top = (y - 25) + 'px';
		popup.id = 'flash-catalog';
		popup.style.width = width + 'px';
		popup.style.height = height + 'px';
		popup.style.position = 'absolute';
		popup.style.backgroundColor = '#ffffff';
		popup.style.backgroundImage = 'url("/images/popup_bg.gif")';

		// create catalog
		var catalog = new SWFObject("/images/catalog.swf", "catalog", "880", "700", "8");
		catalog.addParam("quality", "high");
		catalog.addParam("scale", "noScale");
		catalog.addParam("movie", "/images/catalog.swf");
		catalog.addParam("wmode", "opaque");
		catalog.addVariable("_domain", domain);
		catalog.addVariable("_language", language);

		popup.innerHTML = catalog.getSWFHTML();

		document.getElementById('site').appendChild(popup);

 	} else {
 		popup.style.display = 'block';
 	}

	return;
}


function close_popup_book() {
	document.getElementById('flash-catalog').style.display = 'none';
	return;
}
