
// sorgt dafuer, dass jede seite im frameset dargestellt wird
function force_frameset() {
	if(location.href==top.location.href){
				
		items = location.href.split("pageID=");				
				
		if(items.length > 1){ // entweder die richtige Seite öffnen ...
			items2 = items[1].split("&");			
			newhref = "show.php?pageID="+items2[0];
			location.href=newhref;
		} else { // ... oder die Hauptseite laden
			newhref = "show.php";
			location.href=newhref;
		}
	}
}

function easy11_js_popup_window_image(name, image_url, width, height, bg_color){
	
	// center window
	var left = (screen.width / 2) - (width / 2);
	var top = (screen.height / 2) - (height / 2);

	var win;
	win = window.open("", name, "width=" + width + ",height=" + height + ",scrollbars=no,toolbar=no,status=no,resizable=no,left="+ left +",top="+ top);
	win.document.open("text/html");
	win.document.write("<title>" + name + "</title>");
	win.document.write('<head></head>');
	win.document.bgColor=bg_color;
	win.document.write('<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0>');
	
	win.document.write('<div onclick="self.close()">');
	win.document.write('<table cellspacing=0 cellpadding=0 border=0 width="100%" height="100%"><tr><td align="center" valign="middle">');
	win.document.write('<img src="'+ image_url +'" border=0 alt="" title="">');
	win.document.write('</td></tr></table></div>');

	win.document.write("</body></html>");
	win.document.close();
	win.focus();
}
