var clientIE = document.all ? 1 : 0;
var w3c = document.getElementById ? 1 : 0;
var viewInfo, infoX, infoY;
//document.onmousemove = posLinkInfo;

function posLinkInfo(e) {
 if(clientIE) {
    viewInfo = document.all.description.style;
    infoX = event.clientX + document.body.scrollLeft;
	infoY = event.clientY + document.body.scrollTop;
 } else {
    viewInfo = document.getElementById("description").style;
    infoX = e.clientX;
    infoY = e.clientY;
 }
 infoX < 820 ? viewInfo.left = (infoX +40) + "px" : viewInfo.left = 820 + "px";
 viewInfo.top = (infoY - 50) + "px";
}

/*
function showInfo(text) {
 var content = '<table width="160" border="1" bordercolor="#000000" cellpadding="2" cellspacing="0" bgcolor="#FFFFFF">';
 content += '<tr><td align="center" class="infotext">';
 content += text;
 content += '<\/td><\/tr><\/table>';
 if(clientIE) {
    document.all.description.innerHTML = content;
 } else if(w3c) {
    document.getElementById("description").innerHTML = content;
 }
 viewInfo.visibility = "visible";
}
*/
function showInfo(text) {
 var content = "<div  class=\"infotext\" style=\"width:160px;border:1px solid #FFFFFF;padding:2px;background-color:#414142;\">";
 content += text;
 content += "</div>";
 if(clientIE) {
    document.all.description.innerHTML = content;
 } else if(w3c) {
    document.getElementById("description").innerHTML = content;
 }
 viewInfo.visibility = "visible";
}


function hideInfo() {
 viewInfo.visibility = "hidden";
}
