// Blendet WerbungFrame aus
function KeinWerbeFrame() {
	if(top.frames.length > 0) 
		{top.location.href = self.location;}
}

// DefaultText setzen in Statusleiste
function DefaultStatusText(sText) {
	window.defaultStatus = sText;
}

// Text ändern in Statusleiste
function ChangeStatusText(sText) {
	window.status=sText;
	document.returnValue = true;
}

// Reloads the window if Nav4 resized
function ReloadPage(bInit) {  
	if (bInit==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();}
}

