function zic_newWindow(mypage, myname, w, h, scroll) {
	var winl = 15;
	var wint = 15;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}

function NewWindow(mypage, myname, w, h, scroll) {
	/*var winl = 15;
	var wint = 15;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) {
	win.window.focus();
	}*/
	/* S: Funktion für Popup-Fenster */
	b = "600";
	h = "670";

	// Position berechnen
	var ns6 = (!document.all && document.getElementById);
	var ie4 = (document.all);
	var ns4 = (document.layers);
	if(ns6||ns4) {
		sbreite = innerWidth;
		shoehe = innerHeight;
	} else if(ie4) {
		sbreite = document.body.clientWidth;
		shoehe = document.body.clientHeight;
	}
	x = (sbreite-b)/2;
	y = (shoehe-h)/2;
	window.open("sceditor.php?item="+item, "sceditor", "location=no,width="+b+",height="+h+",left="+x+",top="+y+",screenX="+x+",screenY="+y+"");
}