var Tselect = "";
function showSub(Subj)
{
		if(Subj != Tselect)
		{
			var ret = "";
			ret = "<table bgcolor=999999 cellpadding=1 cellspacing=1 border=0><tr><td bgcolor=white class=a ><LABEL><font color=0E57AD>" + Subj + "</font></LABEL></td></TR><table>";		
			var targetDiv = document.all["subtable"];
			targetDiv.innerHTML = ret;
			
			targetDiv.style.top = window.event.clientY + document.body.scrollTop;
			targetDiv.style.left = window.event.clientX + document.body.scrollLeft;
			targetDiv.style.width = 200;
			targetDiv.style.height = 30;
			targetDiv.style.visibility = "visible";				
			Tselect = Subj;
		}	
}

function hideSub()
{
	var target = document.all["subtable"];
	target.style.visibility = "hidden";
	//target.innerHTML = "";
	target.style.width = 0;
	target.style.height = 0;
	Tselect = "";
	
}
function SetMenuColor(target, color)
{
	target.style.background = color;
}
