<!--
function fntip(evt, tip, spanName) 
{
	if (document.all)
	{
		if (tip == 1)
		{
			tipObj = eval("document.all." + spanName + ".style")
			tipObj.top = parseInt(evt.y)+15
			tipObj.left = Math.max(2,parseInt(evt.x)-30)
			tipObj.visibility = "visible"
			window.status = ""
		}

		if (tip == 2) 
		{
			for(j=1;j<8;j++)
			{
				tipObj = eval("document.all." + "menu" + j + ".style")
				tipObj.visibility = "hidden"
			}
		}
	}
	else
	{
		if (tip == 1)
		{
			tipObj = eval("document.getElementById('" + spanName + "').style")
			tipObj.top = parseInt(evt.pageY)+15
			tipObj.left = Math.max(2,parseInt(evt.pageX)-30)
			tipObj.visibility = "visible"
			window.status = ""
		}
		
		if (tip == 2) 
		{
			for(j=1;j<8;j++)
			{
				tipObj = eval("document.getElementById('" + "menu" + j + "').style")
				tipObj.visibility = "hidden"
			}
		}
	}
}
//-->  
