// Funktion automatische Weiterleitung zu einer neuen Seite
function Weiterleitung(Ziel)
{
  window.location.href = Ziel;
};

// Tolltips
function showWMTT(id) 
{
   wmtt = document.getElementById(id);
   wmtt.style.display = "block"
}

function updateWMTT(e) 
{
   x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
   y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
   if (wmtt != null) 
   {
      wmtt.style.left = (x + 20) + "px";
      wmtt.style.top 	= (y + 20) + "px";
   }
}

function hideWMTT() 
{
   wmtt.style.display = "none";
}

function Goto(Ziel) 
{
//   	win=window.open("http://www.strassenbahnmuseum.de", "" ,"width=400, height=400, dependent=yes");
}

wmtt=null;
document.onmousemove = updateWMTT;