var ns4, ie4, ns6, posx, posy, xpos, ypos, px, py;
ie4 = document.all;
ns6 = document.getElementById && !document.all;

var IE = document.all?true:false;
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var tempX = 0;
var tempY = 0;
function getMouseXY(e) {
if (IE) { // grab the x-y pos.s if browser is IE
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
}
else {  // grab the x-y pos.s if browser is NS
tempX = e.pageX;
tempY = e.pageY;
}  
if (tempX < 0){tempX = 0;}
if (tempY < 0){tempY = 0;}  
//xpos = tempX+15;
//ypos = tempY+8;
xpos = tempX-50;
ypos = tempY+16;
return true;
}

	
	
function logoinfooff(idname) {
    if (ie4) document.all[idname].style.visibility = "hidden"; 
    if (ns6) document.getElementById(idname).style.visibility = "hidden";
    alter = "";
}



function logoinfoon(idname) {
    if (ns6) {
	if(document.getElementById(idname)) {
	    document.getElementById(idname).style.left = xpos;
	    document.getElementById(idname).style.top = ypos;
	    document.getElementById(idname).style.visibility = "visible";
		
	}
    }
    if (ie4) {
	if(document.all[idname]) {
	    document.all[idname].style.left = xpos;
	    document.all[idname].style.top = ypos;
	    document.all[idname].style.visibility = "visible"; 
		
	}
    }
	
}
