  function doTooltip(e, img,w,h)
  {
    if (!Tooltip.ready) Tooltip.init();
    
    var tt_text = "<img src=\""+ img + "\" width=\""+w+"\" height=\""+h+"\"></img>";
    
    changecss('div#tipDiv','width', w)
    changecss('div#tipDiv','height',h)
    
    Tooltip.show(e, tt_text);
  }

function hideTip()
{
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.hide();
}

