﻿function doTooltip(e, msg) {
    if (typeof Tooltip == "undefined" || !Tooltip.ready) return;
    Tooltip.show(e, msg);
}

function hideTip() {
    if (typeof Tooltip == "undefined" || !Tooltip.ready) return;
    Tooltip.hide();
}

// variables for tooltip content 

function ShowImg(event1, img, width) {
    //alert(img);
    Tooltip.init();

    var tipImgTxt = '<img src="' + img + '" alt="" border="0">';
    //    if (img.substring(img.length - 4) == '.gif') {
    //        img = img + '.new.gif';
    //    }
    //    if (width == "0") {
    //        var tipImgTxt = '<img src="images/' + img + '" alt="" border="0">';
    //    }
    //    else if (width > 1) {
    //        var tipImgTxt = '<img src="images/' + img + '" width="' + width + '" alt="" border="0">';
    //    }
    //    else if (width == "-1") {
    //    var tipImgTxt = img;
    //    }
    //    else {
    //        var tipImgTxt = '<img src="images/' + img + '" width="100" alt="" border="0">';
    //    }


    doTooltip(event1, tipImgTxt);
}