<!--
function popup(site,w,h) 
{
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;

	NewWin = window.open(site,'Titel','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}

function popup2(site) 
{
	var w=620;
	var h=420;
	
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;

	NewWin = window.open(site,'Titel','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}

function popup3(site) 
{
	var w=420;
	var h=620;
	
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;

	NewWin = window.open(site,'Titel','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}

function popup4(w,h,pic,titel) 
{
	var w=420;
	var h=620;
	
	var x = screen.availWidth/2-w/2;
	var y = screen.availHeight/2-h/2;

 	var popupWindow = window.open('','','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);

	var site = '<html><title>'+titel+'</title><body><img src='+pic+'></body></html>';
	
	popupWindow.document.write(site);
}
//-->