
/* PopUp-Funktion BY ANDREAS G. WIESE 2006-08-07 -- w=PopUp-Width h=PopUp-Height */

function popUp(url, title, w, h) 
{
/* default value for width if unset */	
	if (!w)
		{
		w = 520;
		}

/* default value for hight if unset */
	if (!h)
		{
		h = 570;
		}
		
/* zentrieren des popups auf dem bildschirm */
	x = screen.availWidth/2-w/2;
    y = screen.availHeight/2-h/2;
/* optionen des popups...keine menubars etc, aber scrollbar und resizeable */	
	optionen = 'width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1';
	
	fenster=window.open(url, title, optionen);
	fenster.focus();
}

