<!--
function onPageLoad()
{
    // refresh the page every 120 seconds
    setTimeout("document.location.reload(true)", 120000);
}

function detailWin(page,scn,name, width, height)
{
    var url = page + ".asp?SCN=" + scn + "&name=" + escape(name);
    var newwin = window.open(url,"detailWin","toolbar=no,width=" + width + ",height=" + height + ",status=no,scrollbars=yes,resizable=yes,menubar=no");
    newwin.focus();
}
function tabularWin(url,width, height)
{
    var newwin = window.open(url,"tabularWin","toolbar=no,width=" + width + ",height=" + height + ",status=no,scrollbars=yes,resizable=yes,menubar=no");
    newwin.focus();
}
function helpWin(url, width, height)
{
    var newwin = window.open(url,"helpWin","toolbar=no,width=" + width + ",height=" + height + ",status=no,scrollbars=yes,resizable=yes,menubar=no");
    newwin.focus();
}
function keyWin(url, width, height)
{
    var newwin = window.open(url,"keyWin","toolbar=no,width=" + width + ",height=" + height + ",status=no,scrollbars=yes,resizable=yes,menubar=no");
    newwin.focus();
}//-->