function popup(url,name,width,height)
 //width und height wird nicht für features4 und features5 verwendet und übergeben 
{
	var links=parseInt(screen.width-310);
	var oben=parseInt(screen.height-540);
	
	
	var features0="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+width+",height="+height+'"';	
		switch(name)
		{
			case 'poppresse':
				var features=features0;	
				break;

			}
	popupFenster=window.open(url,name,features);
	popupFenster.focus();
}


