function getStyleObject(objectId) 
{
  if(document.getElementById && document.getElementById(objectId)) {
        return document.getElementById(objectId).style;
   }
   else if (document.all && document.all(objectId)) {
        return document.all(objectId).style;
   }
   else if (document.layers && document.layers[objectId]) {
        return document.layers[objectId];
   } else {
        return false;
   }
}
function onmyhelp(who,what)
{
 if(navigator.appVersion.indexOf("MSIE")!=-1)
    mydisplay = 'block';
  else
    mydisplay = 'table-row';

  el = getStyleObject(what); 
  el.display = mydisplay;
  el.left = who.offsetLeft + 8 + 'px';
  el.top = who.offsetTop - 35 + 'px';
  return true;
}
function offmyhelp(who,what)
{
  el = getStyleObject(what); 
  el.display = 'none';
  return true;
}
