﻿// JScript File

function ShowToolTip(id)
{
for(i = 0; i < document.forms[0].elements.length; i++){
   if (document.forms[0].elements[i].tagName=='SELECT') document.forms[0].elements[i].style.visibility="hidden";
}
    document.getElementById(id).style.display="";
}

function HideToolTip(id)
{
for(i = 0; i < document.forms[0].elements.length; i++){
   if (document.forms[0].elements[i].tagName=='SELECT') document.forms[0].elements[i].style.visibility="";
}
    document.getElementById(id).style.display="none";
}