function ShowHourGlass(msg)
{
if (msg == "") msg = "Processing request. Please wait..."
msg = "<br>&nbsp; &nbsp;<B>" + msg + "</B>&nbsp; &nbsp;<br><br>" + "<IMG SRC='/images/wait.gif' BORDER=1 WIDTH=75 HEIGHT=15><br><br>"
obj = document.getElementById ? document.getElementById('splashScreen') : document.layers ? document.splashScreen : document.all ? document.all.splashScreen : null
if (obj) { obj.innerHTML = msg; obj.visibility = 'visible' }
}

function HideHourGlass()
{
if (document.getElementById) { document.getElementById('splashScreen').style.visibility = 'hidden'; }
else if (document.layers) { document.splashScreen.visibility = 'hide'; }
else if (document.all) { document.all.splashScreen.style.visibility = 'hidden'; }
}