<!--
if (parent.frames.length == 0)
  location.href="http://www.laufundmasche.de";

function fenster(URL) {
  window.open(URL,"LuM","locationbar=no,menubar=0,resizable=no,scrollbars=yes,width=680,height=475")
}

function getElem(p)
{
	if(document.getElementById)
	{
 		javascript=true;
 		return document.getElementById(p);
	}
	else if(document.all)
	{
 		javascript=true;
 		return document.all[p];
	}
}

var openId = 0;

function toggle(id) {

  var cnt = 3; // ANZAHL der divs
  
  for (var i = 1; i <= cnt; i++) {
     getElem(i).style.visibility = "hidden";
     getElem(i).style.display = "none";
  }
  if (openId != id) {
    getElem(id).style.visibility = "visible";
    getElem(id).style.display = "block"; 
    openId = id; 
  }
  else
    openId = 0;
}

var activeId = 91;

function openLink(lnk, id) {
  parent.main.location.href = lnk;
  getElem(activeId).className = "standard";
  getElem(id).className = "active";
  activeId = id;
}

function setOver(id) {
  getElem(id).className = "hover";
}

function setOut(id) {
  if (id == activeId)
    getElem(id).className = "active";
  else
    getElem(id).className = "standard";
}
//-->
