// Fenster öffnen	var win = null;		function nw(seite, fname, breit, hoch, x_pos, y_pos, scroll){		var LeftPos = (screen.availWidth) ? (screen.availWidth-breit)/2 : 100;		var TopPos = (screen.availHeight) ? (screen.availHeight-hoch)/2 : 100;		LeftPos = x_pos != "" ? x_pos : LeftPos;		TopPos = y_pos != "" ? x_pos : TopPos;		var param = 'width='+breit+',height='+hoch+',top='+TopPos+',left='+LeftPos+',screenX=' + LeftPos + ',screenY=' + TopPos + ',scrollbars='+scroll+',location=yes,directories=no,status=yes,menubar=no,toolbar=yes,resizable=yes';		if (seite != "")		{			win = window.open(seite, fname, param);		}		else 		{			win = window.open("", fname, param);			with (win.document) 			{    			write('<head><title>' + fname + '</title>');                	write('</head><body bgcolor="#cccc99" onblur="self.close()">');                	write('<table width="99%" height="99%" border="0" cellspacing="0" cellpadding="0">');                	write('<tr align="center"><td>');                	write('<a href="#" onclick="self.close()">');                	write('Fensterinhalt Fensterinhalt Fensterinhalt');                	write('</td></tr>');                	write('</table>');                	write('</body>');   			}			win.document.close();		}		win.focus();	}
