var timerID = null, pause = 0;
function UpdateStatus()
{
}
function SetPause ()
{
pause = 5;
}
function KillStatusUpdate ()
{
if (timerID)
{
clearTimeout(timerID);
timerID = null;
} // if
}
function GetStyleSheet (location)
{
if (typeof (location) == "undefined")
location = "";
if (FireFoxVersion () >= 0)
return '';
else if (IEVersion () >= 500)
return '';
else if (IEVersion () >= 400)
return '';
else if (IEVersion () >= 300)
return '';
else if (this.ns > 0)
return '';
return "";
}