<!--

var subpage=null;
var focuscnt=0;

function pop_show(url, breite, hoehe) 
{
	links = (screen.width/2)-(breite/2)-10;
	oben = (screen.height/2)-(hoehe/2);
 	subpage = window.open(url,"showcontent","height="+hoehe+",width="+breite+",top="+oben+",left="+links+"");
	if(!document.layers)
	 window.setTimeout();
	window.setTimeout('popupfocus(0)',500); 
} 

function popupfocus()
{
focuscnt++;	
if (subpage)
  subpage.focus();
else 
  if(focuscnt<3)
    window.setTimeout('popupfocus()',500); 
}

function printpopup()
{
	window.print();
}

//-->
