﻿// JScript File

var timeoutperiod = 2000;
var timeObj;

function showUVLabelInfo()
{    
    clearTimeout(timeObj);
    document.getElementById("UVLabelInfo").style.visibility = "visible";            
}

function hideUVLabelInfo()
{    
    document.getElementById("UVLabelInfo").style.visibility = "hidden";    
}

function resetTimeOut()
{
    clearTimeout(timeObj);
    timeObj = setTimeout("hideUVLabelInfo()", timeoutperiod);
}

function startTimeOut()
{
    timeObj = setTimeout("hideUVLabelInfo()", timeoutperiod);
}
