// Browserweiche Mozilla vs. IE
//if(navigator.appVersion.indexOf("MSIE")>-1)
// document.write('<link rel="stylesheet" media="screen" href="../neu/neu/styles/main_ie.css" //type="text/css" />') 
//-->

//Öffnet den Bild-Layer
function show (a) {
  if (document.getElementById)
    document.getElementById(a).style.visibility = "visible";
}

//Schliesst den Bild-Layer
function close (abz) {
  if (document.getElementById)
    document.getElementById(abz).style.visibility = "hidden";
}

// Tooltip Bild
tipp = null;

document.onmousemove = updatetipp;

function updatetipp(e) {
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
	y = (document.all) ? window.event.y + document.body.scrollTop  : e.pageY;
	if (tipp != null) {
		tipp.style.left = (x + 20) + "px";
		tipp.style.top 	= (y + 20) + "px";
	}
}