/* STB Info Box */

stbinfo = null; 

document.onmousemove = updateSTBINFO; 
function updateSTBINFO(e) { 
	x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX; 
	y = (document.all) ? window.event.y + document.body.scrollTop : e.pageY; 
	if (stbinfo != null) { 
		if (x >=400) x=x-500;
		stbinfo.style.left = (x + 20) + "px"; stbinfo.style.top = (y - 30) + "px"; 
	} 
} 

function showSTBINFO(id) { 
	stbinfo = document.getElementById(id); 
	stbinfo.style.display = "block"; 
 	stbinfo.style.left = 200;
//  	stbinfo.style.top = 200;
	} 

function hideSTBINFO() { 
	stbinfo.style.display = "none"; 
	} 



