//****************************************************************************************************************************************
//
//erstellt f&uuml;r die PRETECH GmbH
//durch Jotthoch2 (www.jotthoch2.de)
//Copyright bei Jotthoch2
//
//****************************************************************************************************************************************
// InfoText für zum Beispiel Links

var Initialisierung = 0
var Ex, Ey, ContentInfo;


function InfoTextBewegen(layerName, FromTop, FromLeft, e)
{
	document.getElementById(layerName).style.top = FromTop + "px";
	document.getElementById(layerName).style.left = FromLeft + 15 + "px";
}

function ITAktivieren()
{
	Initialisierung=1;
}

function ITDeaktivieren()
{
	Initialisierung=0;
}

function ITStarten(e)
{
	if(Initialisierung)
	{
		Ex = document.all ? window.event.x + document.body.scrollLeft : e.pageX;
		Ey = document.all ? window.event.y + document.body.scrollTop : e.pageY;
		InfoTextBewegen("InfoText", Ey, Ex, e);
		document.getElementById('InfoText').style.visibility = "visible";
	}
	else
	{
		InfoTextBewegen("InfoText", 0, 0);
		document.getElementById('InfoText').style.visibility = "hidden";
	}
}

function InfoText(layerName, ITInhalt)
{
	ContentInfo = '<div class="InfoText">'+ITInhalt+'</div>';
	document.getElementById(layerName).innerHTML = ContentInfo;
	document.onmousemove = ITStarten;
}
