function HeaderNavOn(cell)
{
cell.style.color ='white'
cell.style.backgroundColor ='#336699'
cell.style.borderColor ='white'
}
function HeaderNavOff(cell)
{
cell.style.color ="black"
cell.style.backgroundColor = ''
cell.style.borderColor= 'whitesmoke'
}
function HeaderOn(cell)
{
cell.style.color ='#336699'
}
function HeaderOff(cell)
{
cell.style.color ="black"
}
function MouseOn(cell)
{
cell.style.backgroundColor ='#336699'
cell.style.borderColor ='white'
cell.style.color ='white'
}
function MouseOff(cell)
{
cell.style.backgroundColor = ''
cell.style.borderColor= 'whitesmoke'
cell.style.color ='#336699'
}
function NavTo(url)
{
window.location = url
}
function NewWin(url)
{
window.open(url,"external")
}
function Show(e)
{
e.style.display="inline"
}
function Hide(e)
{
e.style.display="none"
}

function ShowTime()
{
var TimerKey
var now = new Date()
var Hours = now.getHours()
var Minutes = now.getMinutes()
var Seconds = now.getSeconds()
TimeDisplay.innerText = Date() 
TimerKey = setTimeout("ShowTime()",1000)
}

