// Pop-up help text as you mouse over an object.

// Don't forget to include plink.css
// <link href="/scripts/plink.css" rel="stylesheet" type="text/css" />

// Include on your page:
// <div id="plink_pane" class="plink_pane"></div>

// Code the following events on the object you want annoated:
// onmouseover="plink_on( this, 'Blah blah blah.' );"
// onmouseout="plink_off();"

function plink_on( who, which )
{
  var pane=document.getElementById('plink_pane');
  pane.innerHTML = which;
  pane.style.left=(objOffsetLeft( who ) + who.offsetWidth + 3) + 'px';
  pane.style.display="block";
  pane.style.top= Math.max(objOffsetTop( who ) - (pane.clientHeight), 0) + 'px';
}
function plink_off()
{
  var pane=document.getElementById('plink_pane');
  pane.style.display="none";
}


