/*************************************************************************
This code is from Dynamic Web Coding at dyn-web.com
Copyright 2003-5 by Sharon Paine 
See Terms of Use at http://www.dyn-web.com/bus/terms.html
regarding conditions under which you may use this code.
This notice must be retained in the code as is!
*************************************************************************/

// display a tooltip
function doTooltip(e, msg) {
if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
Tooltip.show(e, msg);
}

// hide a tooltip that has been drawn
function hideTip() 
{
	currentId=""
	if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
	Tooltip.hide();
}
	
// auto start the toop tip
dw_event.add( window, "load", this.ToolTipInit, true );

function ToolTipInit()
{
	Tooltip.init();//init the tooltips
}
