<!--
var mx = 0;
var my = 0;
var activeDiv;

function init()
{
	if( navigator.appName == "Netscape" ) {
		isNetscape = true;
	}

	browserVersion = parseFloat( navigator.appVersion );
	
	if( browserVersion < 4 ) {
		return;
	}

	document.onmousemove = onmousemove;
	document.onclick = onclick;	
}

function ShowBubble( elem, x, y )
{
	var status;

	HideBubble();

	if( !document.getElementById ) {
		MM_showHideLayers( document.layers[elem].id, '', 'show' );
		activeDiv = document.layers[elem];
	} else {
		MM_showHideLayers( document.getElementById( elem ).id, '', 'show' );
		activeDiv = document.getElementById( elem );
	}

	if( status = document.getElementById('status') ) {
		status.innerHTML += " ";
//		status.innerHTML += " showing div " + activeDiv.id + "\n";
	}
}

function HideBubble()
{
	var status;

	if( !activeDiv ) {
		return;
	}

	if( status = document.getElementById('status') ) {
		status.innerHTML += " ";
//		status.innerHTML += " hiding div " + activeDiv.id + "\n";
	}

	MM_showHideLayers( activeDiv.id, '', 'hide' );
}

function onclick( Event )
{
	HideBubble();
}

 WinAppearance="toolbar=no,location=no ,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no";

function OpenWin(url,name,weite,hoehe,oben,links)
{
        window.open(url,name,WinAppearance+',width='+weite+',height='+hoehe+',top='+oben+',left='+links);
}

//--->
