<!--
wmtt = null;

document.onmousemove = updateWMTT;

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 + 0) + "px";
		wmtt.style.top 	= (y + 0) + "px";
		//wmtt.style.left = (x + 20) + "px";
		//wmtt.style.top 	= (y + 20) + "px";
	}
}

function createToolipContent(a,b,c) {
//<img src=\'{tpl->dir}/_img/katalog_gallerie/{$row.A.BILDNAME}\'><img src=\'{tpl->dir}/_img/katalog_gallerie/{$row.B.BILDNAME}\'><br />{$row.A.TOOLTIP}
  return a + b + "<br />" + c; 
}

function showWMTT(caller,id,text) {
	//wmtt = document.getElementById(id);
	wmtt = document.getElementById("1");
	document.getElementById("tt_content").innerHTML = text;
//	wmtt.innerHTML = text;
	wmtt.style.display = "block"
}

function hideWMTT() {
	wmtt.style.display = "none";
}

//-->
