// JavaScript Document
/*    
		content:		Inhalt des neuen Browserfensters
		iWidth:			Breite des neuen Browserfensters
		iHeight:		Höhe des neuen Browserfensters
		isMenu:			Menubar (yes / no)
		isTool:			Toolbar (yes / no)
		isLocation:	Adressbereich (Location) (yes / no)
		isStatus:		Statusbar (yes / no)
		*/
		
		function newWindow(content, iWidth, iHeight, isMenu, isTool, isLocation, isStatus, Yoffset, Xoffset)
 {
		
		  // Browser Abfrage			
			var isNav=navigator.appName=="Netscape";
			var isIE=navigator.appName=="Microsoft Internet Explorer";
			
			// Fenster ausrichten
			//var x=Xoffset;
			//var y=Yoffset;
			
			// Fenster öffnen
			if (isNav)
			 {
			  window.open(content,"","location="+isLocation+",menubar="+isMenu+",resizable=yes,scrollbars=no,status="+isStatus+",toolbar="+isTool+",screenX="+Xoffset+",screenY="+Yoffset+",width="+iWidth+",height="+iHeight);
			}
			 else
			  {
				window.open(content,"","location="+isLocation+",menubar="+isMenu+",resizable=yes,scrollbars=no,status="+isStatus+",toolbar="+isTool+",left="+Xoffset+",top="+Yoffset+",width="+iWidth+",height="+iHeight);
			}	
		}	
