<!--
var NS = navigator.appName == "Netscape";

function initerrmsg(iwidth,url,time) {
  imgWidth = iwidth;
  imgurl = url;
  if (NS == true) {
    topPix = ".top";
    leftPix = ".left";
  } else {
    topPix = ".pixelTop";
    leftPix = ".pixelLeft";
  }
  sizes();
   
  window.setTimeout('showerror();',time);
}

function sizes() {
  hoehe=getWindowHeight();
  breite=getWindowWidth();
}

function showerror() {
  oben = posTop() + Math.round(hoehe/2) - 50;
  left = Math.round((breite - imgWidth)/2);
  document.errimg.src = imgurl;
  eval("document.getElementById('errobj').style.top ='" + oben + "px'");
  eval("document.getElementById('errobj').style.left ='" + left + "px'");
  document.getElementById('errobj').style.visibility = "visible";
}

function hideerror() {
  document.getElementById('errobj').style.visibility = "hidden";
}

//-->

