//Zentriertes Window aufpoppen--------------------------------------------------------------------------
function popfunc(URL, breite, hoehe)
{
	if (!breite){var breite=420;}
	if (!hoehe)	{var hoehe=415;}
	
	var top=(screen.availHeight-hoehe)/2;
	var left=(screen.availWidth-breite)/2;
	var args = "height="+hoehe+", width="+breite+",menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,left="+left+",top="+top;
	popwin=window.open(URL,'popname',args);
	popwin.focus();
}

function init(){ var loc=window.document.location.hash; loc = loc.substring(1, loc.length); if(loc) ifr.document.location.href = unescape(loc);}