
//nc relaodpage
function reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}
reloadPage(true);


//status zeile
var txt = "";
function szeile(anzeige)
   {
    status = anzeige;
   }
   		
//____________________________ Fenster MENUBAR __________________________________________________________________
//  onClick="javascript:mainWin(this.href, 'name', '440', '500', 'no', 'no');  return false" 
 		var win = 0;
		var win;
		function mainWin(meineSeite,meinName,w,h,scroll,menu)
		{
			LeftPos = (screen.width) ? (screen.width-w)/2 : 0;
			TopPos = (screen.height) ? (screen.height-h)/2 : 0;
		
			setting = 'height='+h+',width='+w+',top='+TopPos+',left='+LeftPos+',scrollbars='+scroll+',menubar='+menu+',resizable'
			win = window.open(meineSeite,meinName,setting)
			win.focus();
		}
