/* scripts.js */
/* */
/* Quelldatei aller JavaScripts */
/* */
/* (c) 2002 */
/* . m a r t i n m o l c h */

var Applic = navigator.appName;
var Version = navigator.appVersion;
var NewImageAvaible = 1;

function NeuesFenster(Datei,Name,Props)
{
  open(Datei,Name,Props);
  /* "width=480,height=450,screenX=10,screenY=10,scrollbars" */
}

function StatusZeile(DerText)
{
  window.status = DerText;
}

function MacheSichtbar(WelchenDiv)
{
  if ((navigator.appName == "Netscape") && (navigator.appVersion.substring(0,1) == "4"))
  {
    eval("document."+WelchenDiv+".visibility = 'show'");
  }
  else
  {
    if (document.getElementById)
    {
      document.getElementById(WelchenDiv).style.visibility = 'visible';
    }
    if (document.all && !document.getElementById)
    {
      eval("document.all."+WelchenDiv+".style.setAttribute('visibility','visible','true')");
    }
  }
}

function MacheUnSichtbar(WelchenDiv)
{
  if ((navigator.appName == "Netscape") && (navigator.appVersion.substring(0,1) == "4"))
  {
    eval("document."+WelchenDiv+".visibility = 'hide'");
  }
  else
  {
    if (document.getElementById)
    {
      document.getElementById(WelchenDiv).style.visibility = 'hidden';
    }
    if (document.all && !document.getElementById)
    {
      eval("document.all."+WelchenDiv+".style.setAttribute('visibility','hidden','true')");
    }
  }
}