window.onerror = null;
manufacturer = navigator.appName;
versionnum = parseFloat(navigator.appVersion);
if (manufacturer.indexOf('Netscape') >= 0 && versionnum < 4.0)
location.href = 'index.php';
if (manufacturer.indexOf('Microsoft') >= 0 && versionnum < 4.0)
location.href = 'index.html';


function openWindowTrack( targetURL ) {
NewWin = window.open( targetURL, 'popup', 'width=380,height=550,resizable=1');
NewWin.focus()
}

function openWindowFooter( targetURL ) {
NewWin = window.open( targetURL, 'popup', 'width=380,height=600,resizable=1,scrollbars=1');
NewWin.focus()
}

function openWindow( targetURL ) {
NewWin = window.open( targetURL, 'popup', 'width=200,height=200');
setTimeout('NewWin.close()',9000);
NewWin.focus()
}

function openWindowNew( targetURL ) {
NewWin = window.open( targetURL, 'popup', 'width=230,height=500');
setTimeout('NewWin.close()',9000);
NewWin.focus()
}

function showtime()
{
var now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var timeValue = "" + ((hours > 12) ? hours - 12 : hours)
timeValue  += ((minutes < 10) ? ":0" : ":") + minutes
timeValue  += (hours >= 12) ? " pm EST. " : " am EST."
document.clock.face.value = timeValue 
timerRunning = true
}
var timerID = null
var timerRunning = false
function stopclock()
{
if(timerRunning)
clearTimeout(timerID)
timerRunning = false
}
function startclock()
{
stopclock()
showtime()
}


