/**
 *	Class to handle tool tip actions.
 *
 *	@author		Unknown
 *	@version	1.0
 *	@copyright	Katana Productions Pty Ltd 2002
*/
function ToolTipAction()
{

}

/**
 *	Causes a floating tool tip to be displayed.
 *
 *  @param  html  The HTML to be displayed in the tool tip
 *
*/
ToolTipAction.prototype.doAction = function(html)
{
  event.cancelBubble = true;
  var menu = new FloatingToolTip(event.x, event.y, html);
  menu.show(event.srcElement);
}