// @-Domains
var url= window.location.href;
  if(url.charAt(url.length- 1)== '/') { url= url.substring(0, url.length- 1); }
  url= url+ '/';
  var s= url.indexOf("//")+ 2;
  var e= url.indexOf("@");
  if(e > 0) {
    var atpart= url.substring(s, e);
    window.location.href= url+ atpart;
  }

// Frameschutz
if (parent.frames.length > 0) {
    parent.location.href = self.document.location
}

// Nachricht in Statusleiste
function display(msgStr) { 
  status=msgStr;
  document.returnValue = true;
}

// Fehlerbehebung
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);

function blockError(){return true;}
window.onerror = blockError;

// Statusleiste permanente Anzeige
window.status="ue08.de | ultras-elsdorf.de";
