﻿// JScript File
/*
var offsetxpoint=60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var ShowLiveTip=false

var LiveTip;


function FindAccTip(n)
{
    return FindControl("ToolTip"+n);
}



function ShowAccTip(tipnumber)
{
    LiveTip = FindAccTip(tipnumber);
    if (LiveTip)
    {
        if (LiveTip.style.display!="inline")
        {
            ShowLiveTip=true;
            LiveTip.style.display="inline";
        }
    }
    return false;
}

function MyTip(e)
{if (PositionTip) 
    PositionTip(e);
}

//document.onmousemove=MyTip;
*/