		
//NEUES FENSTER OEFFNEN


		function open_window(url,title,b,h)
 		{
   		var maxwidth = screen.width-50;
   		var maxheight = screen.height-120;
   		var scroll = "no";
   		h+=20; 
   		if (b > maxwidth)  b = maxwidth; 
   		if (h > maxheight) { h = maxheight; b+=20; }
   		if (navigator.appVersion.search(/AOL/) != -1) { scroll = 'yes'; b = maxwidth; h = maxheight;} 
   		var param = "dependent=yes,resizable=no,location=no,directories=no,status=no,menubar=no,scrollbars="+ scroll +",toolbar=no,width="		
		+ b +",height="+ h;
   		f = window.open(url,title,param);
   		f.moveTo((screen.width-b)/2,(screen.height-h)/2-40);
 		}

		function MM_openBrWindow(theURL,winName,features) { //v2.0
  		window.open(theURL,winName,features);
		}

