function TrackMouse(e)
{

if (e == null) { e = window.event } 
document.getElementById('draggable').style.left=e.clientX+document.body.scrollLeft+30+'px';
document.getElementById('draggable').style.top=e.clientY+document.body.scrollTop+'px';

}

function ShowInfo(productID)
{
var xmlHttp;

try
  {  // Firefox, Opera 8.0+, Safari  
  	xmlHttp=new XMLHttpRequest(); 
   }
catch (e)
  {  // Internet Explorer 
   try
    {    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    }
  catch (e)
    {    try
      {      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      }
    catch (e)
      {      alert("Your browser does not support AJAX!");      return false;      }    }  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
		document.getElementById("draggable").innerHTML=xmlHttp.responseText;
      }
    }
  document.getElementById("draggable").innerHTML="<p align=center>...fetching<br>info....</p>" 
  document.onmousemove=TrackMouse;
  document.getElementById("draggable").style.visibility="visible";
  xmlHttp.open("GET","/ajaxproductinfo.asp?productID=" + productID,true);
  xmlHttp.send(null);  
}

function HideTip()

{
  document.onmousemove=null;
  document.getElementById("draggable").style.visibility="hidden";
}