var x = 0;
var xx=10;
var yy=-80;
var y = 0;
var showit = 0;

ns = (document.layers)? true:false
ie4 = (document.all)? true:false
ie5 = false;
if (ie4) {if (navigator.userAgent.indexOf('MSIE 5')>0) {ie5 = true;}}
if ( navigator.platform.substring(0,3).toUpperCase() == "MAC" && (ie4 || ie5) ){mac = true;} else {mac = false;}

if ( (ns) || (ie4) ) {
 if (ns) over = document.BHinweis
 if (ie4) over = BHinweis.style
 document.onmousemove = mouseMove
 if (ns) document.captureEvents(Event.MOUSEMOVE)
}

function galktext(xm)
{
 if (mac) {return;}
 xx=xm;
 text = "<table bgcolor=\"#ffffff\" width=250 border=1 cellpadding=10 cellspacing=0><tr><td>Klicken Sie um weiterzugelangen!</td></tr></table>"
 schreibe(text);
 hindamit();
}

function baustelle(xm)
{
 if (mac) {return;}
 xx=xm;
 text = "<table bgcolor=\"#ffffff\" width=250 border=1 cellpadding=5 cellspacing=0><tr><td>Die Seiten befinden sich noch im Aufbau!<br>&nbsp;<br>Link noch nicht verfügbar.</td></tr></table>"
 schreibe(text);
 hindamit();
}

function schreibe(denText)
{
 if (ns)
 {
 var lll = document.BHinweis.document
     lll.write(denText)
     lll.close()
 }
 else
 {
  if (ie4) document.all["BHinweis"].innerHTML = denText
 }
}

function show(obj)
{
 if (ns) obj.visibility = "show"
 else if (ie4) obj.visibility = "visible"
}

function hide(obj)
{
 if (ns) obj.visibility = "hide"
 else if (ie4) obj.visibility = "hidden"
}

function moveTo(obj,lx,ly)
{
 obj.left = lx
 obj.top = ly
}

function wegdamit()
{
 if (mac) {return;}
 if ( (ns) || (ie4) )
 {
  showit = 0;
  hide(over);
 }
}

function hindamit()
{
 if ( (ns) || (ie4) )
 {
  if (showit == 0)
  {
   moveTo(over,x+xx,y+yy);
   show(over);
   showit = 1;
  }
 }
}

function mouseMove(e)
{
 if (ns) {x=e.pageX; y=e.pageY;}
 if (ie4) {x=event.x; y=event.y;}
 if (ie5) {x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}
 if (showit)
 {
  moveTo(over,x+xx,y+yy);
 }
}

//**

function weiter() {
 setTimeout("weiter1()",30000);
}

function weiter1() {
 location.href="galk_frame.htm";
}