/**
 * 123plakat.de - Content Management System
 *
 * This is the POPUP JAVASCRIPT DOCUMENT
 * of the 123plakat.de - content managament system frontend
 *
 * @file    popup.js
 * @author  dpi one <www.dpi-one.de>
 */


/***********************
  open new window
 ***********************/
if (!parent.opener && window.name != 'FEopenLink') {
	var url = document.getElementsByTagName("base")[0].href ? document.getElementsByTagName("base")[0].href : '/';
	vHWin = window.open(document.location.href, 'FEopenLink', 'width=600,height=600');
	if (vHWin) {
		vHWin.focus();
		document.location.replace(url);
	} else {
		rewrite_content();
	}
}
	// rewrite content
function rewrite_content() {
	if (!document.getElementsByTagName("body")[0]) {
		window.setTimeout('rewrite_content()', 50);
		return;
	}
	document.getElementsByTagName("body")[0].innerHTML = '<p style=\'padding: 10%;\'><a href="' + url + '" onclick="vHWin=window.open(document.location.href,\'FEopenLink\',\'width=600,height=600\'); vHWin.focus();">' + document.title + '</a></p>';
}