<!--
//var HintObj=window.createPopup();

//dwn.startDownload("hint.asp",onDone);

//function onDone(src)
//{
//	HintObj.document.write(src);
//}
      
//function show_hint(msg,obj)
//{
//	try
//	{
//		HintObj.document.all.item('critobj').innerHTML=msg;
//		HintObj.show(5,5,500,300,obj);
//	}
//	catch(exception)
//	{
//	}
//}

function show_hint(show,obj,msg)
{
	try
	{
		if(show==true)
		{
			obj.style.posTop=event.clientY+10;
			obj.style.posLeft=event.clientX+10;
			obj.innerHTML=msg;
			obj.style.display='inline';
		}
		else
		{
			obj.innerHTML='';
			obj.style.display='none';
		}
	}
	catch(exception)
	{
	}
}
-->