gtschrift="verdana,arial,helvetica";
gtschriftsize=-7;
gtschriftcolor="#ffffff";
gtfarbe="#004400";
gtrahmen="#ffff00";
gtpause=350;
gtwidth=250;
gtie4height=0;
mx=0; my=0;
gttimer=0;
sichtbar=false;
if(document.layers) {NS4=true} else {NS4=false};
if(document.all) {IE4=true} else {IE4=false};
if (NS4) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = mauskoord;
if (NS4) {
	origWidth = innerWidth;
	origHeight = innerHeight;
}
function reDo() {
	if (innerWidth != origWidth || innerHeight != origHeight) 
      	location.reload();
}
if (NS4) onresize = reDo;
function mauskoord(e){
	if((NS4)&&(document.nblase)) {
		mx=Math.min(e.pageX+16, window.innerWidth-document.nblase.clip.width);
		my=Math.min(e.pageY+20, (window.innerHeight + window.pageYOffset-document.nblase.clip.height));
		if(sichtbar) document.nblase.moveTo(mx,my);
	}
	if((IE4)) {
		mx = Math.min((event.clientX+document.body.scrollLeft+16), (document.body.clientWidth-document.all.blase.style.pixelWidth));
		my = Math.min((event.clientY+document.body.scrollTop+20), (document.body.clientHeight-gtie4height)+(document.body.scrollTop));
		if(sichtbar) {
			document.all.blase.style.top = my;
			document.all.blase.style.left = mx; 
		}
	}
}
function gt(text) {
	if(NS4||IE4){
		gttimer=setInterval("gtan('"+text+"')",gtpause)
	}
}
function gtan(text){
	sichtbar=true;
	if ((NS4)&&(document.nblase)){
		document.nblase.height=0;
		with(document.nblase.document){
			open();
			write('<layer id="l"><table bgcolor='+gtrahmen+' cellspacing="0" cellpadding="1" border="0"><tr><td><font face="'+gtschrift+'" size="'+gtschriftsize+'" color="#004400"><b>&nbsp;&nbsp;&nbsp;?&nbsp;&nbsp;&nbsp;</b></font></td></tr></table><table bgcolor='+gtrahmen+' width="100%" cellspacing="0" cellpadding="1" border="0"><tr><td><table bgcolor='+gtfarbe+' width="100%" cellspacing="0" cellpadding="7" border="0"><tr><td><div align="justify"><font face="' +gtschrift+ '" size="'+gtschriftsize+'" color="'+gtschriftcolor+'">&nbsp;&nbsp;&nbsp;'+text+' ...</font></div></td></tr></table></td></tr></table></layer>');
			close();
		}
		document.nblase.moveTo(mx,my);
		document.nblase.height=1;
		document.nblase.visibility="show";
	}
	if(IE4){
		document.all.blase.innerHTML='<table bgcolor='+gtrahmen+' cellspacing="0" cellpadding="1" border="0"><tr><td><font face="'+gtschrift+'" size="'+gtschriftsize+'" color="#004400"><b>&nbsp;&nbsp;&nbsp;?&nbsp;&nbsp;&nbsp;</b></font></td></tr></table><table bgcolor='+gtrahmen+' width="100%" cellspacing="0" cellpadding="1" border="0"><tr><td><table bgcolor="'+gtfarbe+'" width="100%" cellspacing="0" cellpadding="7" border="0"><tr><td><div align="justify"><font face="'+gtschrift+'" size="'+gtschriftsize+'" color="'+gtschriftcolor+'">&nbsp;&nbsp;&nbsp;'+text+' ...</font></div><span id="gtbottom"></span></td></tr></table></td></tr></table>';
		gtie4height = document.all.gtbottom.offsetTop;
		tempEl = document.all.gtbottom.offsetParent;
		while (tempEl != null){
			gtie4height += tempEl.offsetTop;
			tempEl = tempEl.offsetParent;
		}
		gtie4height = gtie4height-parseInt(document.all.blase.style.top)+30;
		document.all.blase.style.top = my;
		document.all.blase.style.left = mx;
		document.all.blase.style.visibility="visible";
	}
	clearInterval(gttimer);
}
function gtaus() {
	sichtbar=false;
	if(NS4&&(document.nblase)) {document.nblase.visibility="hide"; clearInterval(gttimer)}
	if(IE4) {document.all.blase.style.visibility="hidden"; clearInterval(gttimer)}
}
