var playerwidth = 128;
var playerheight = 20;
var linewidth = 1;

var wndopen = 0;
var mouseready = 0;
var mouseinwnd = 0;
function ShowInfo(text, id, tableid)
{
	var cell = document.getElementById(id);
	var wnd = document.getElementById('wnd');
	var table = document.getElementById(tableid);
	wnd.innerHTML = text;
	wnd.style.left = cell.offsetLeft + cell.offsetWidth + 5;
	wnd.style.top = cell.offsetTop + table.offsetTop + 5;
	wnd.style.visibility = 'visible';
	wndopen = 1;
	mouseready = 0;
}
function HideInfo(){document.getElementById('wnd').style.visibility = 'hidden';}
