/*************************************************************************
This code is from Dynamic Web Coding at dyn-web.com
Copyright 2003-5 by Sharon Paine
See Terms of Use at 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!
*************************************************************************/
function doTooltip(e, msg) {
    if(typeof Tooltip == "undefined" || !Tooltip.ready) { return; }

    Tooltip.clearTimer();
    var tip = document.getElementById ? document.getElementById(Tooltip.tipID) : null;
    if (tip && tip.onmouseout == null) {
        tip.onmouseout = Tooltip.tipOutCheck;
        tip.onmouseover = Tooltip.clearTimer;
    }
    Tooltip.show(e, msg);

}

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

    Tooltip.timerId = setTimeout("Tooltip.hide()", 300);

}
// Tooltip content variables
var msgTips  = 'Get the latest information about the <a href="http://www.dyn-web.com/dhtml/tooltips/">tooltips</a> currently available at <a href="http://www.dyn-web.com">dyn-web.com</a>.';
var msgTerms = 'The code is free for <a href="http://www.dyn-web.com/bus/terms.html#personal">personal use</a> but all other uses require purchase of a <a href="http://www.dyn-web.com/bus/purchase.html">license</a>.';