    
var _ua = document.all ? ((navigator.userAgent.indexOf('MSIE 5') > 5) ? "ie5" : "ie4") : "foo"; 

var oEvent; 

function showObject(obj)
{
	 var pobject=document.getElementById(obj);
	//width=parseInt(pobject.style.width);
	pobject.style.visibility ="visible";
	//pobject.style.width="5";
	//show();
}

function moveObject(obj)
{
	var pobject=document.getElementById(obj);
	 if(_ua =="foo")
	 {
	 	oEvent = arguments.callee.caller.arguments[0]; 
	 	pobject.style.top = oEvent.clientY +document.body.scrollTop+ 2; 
	 	pobject.style.left = oEvent.clientX +document.body.scrollLeft+ 2;
	 }
	 else
	 {
	 	pobject.style.top = event.y + document.body.scrollTop +2;   
	 	pobject.style.left = event.x + document.body.scrollLeft +2; 
	 }
}

//function show(){
  //clearTimeout(te);
    //if(width>=250)  return;
   //width=width+20;
  //pobject.style.width=width;
  //te = window.setTimeout("show()",1);

//}

function hideObject(obj)
{
	var pobject=document.getElementById(obj);
	//width=parseInt(pobject.style.width);
	pobject.style.visibility ="hidden";
	//hide();
}

//function hide(){
 //clearTimeout(te);
  //if(width<20) 
  //{
  //	pobject.style.visibility ="hidden";
    //  return;
  //}
  //width=width-20;
  //pobject.style.width=width;
  //te = window.setTimeout("hide()",1);

//}


