/* Tool Tip Set starts */ function showtip(thetip, posX, posY, theToolTipId) { if(theToolTipId == undefined) theToolTipId = "tooltip"; $("#" + theToolTipId).css("position", "absolute"); $("#" + theToolTipId).css("left", (posX + 10) + "px"); $("#" + theToolTipId).css("top", (posY + 10) + "px"); $("#" + theToolTipId).css("display", "block"); $("#" + theToolTipId).css("height", "auto"); $("#" + theToolTipId).html(thetip); } function hidetip(theToolTipId) { if(theToolTipId == undefined) theToolTipId = "tooltip"; $("#" + theToolTipId).css("display", "none"); } /* Tool Tip Set Ends */