<!-- Begin

function Navigate(optName)
{
	var number = optName.selectedIndex;
	location.href = optName.options[number].value;
}


function popUp(url,intToolbar,intScrollbars,intLocation,intStatusbar,intMenubar,intResizable,intWidth,intHeight)
{
var newwindow = '';

	if (!newwindow.closed && newwindow.location)
	{
		newwindow.location.href = url;
	}
	else
	{
		newwindow=window.open(url,'name', 'toolbar=' + intToolbar + ',scrollbars=' + intScrollbars + ',location=' + intLocation + ',statusbar=' + intStatusbar + ',menubar=' + intMenubar + ',resizable=' + intResizable + ',width=' + intWidth + ',height=' + intHeight + ',left = 312,top = 184');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
}


function popUpNew(optName,intToolbar,intScrollbars,intLocation,intStatusbar,intMenubar,intResizable,intWidth,intHeight) {
   var number = optName.selectedIndex;
   var strLocation = optName.options[number].value;
   var day = new Date();
   var id = day.getTime();
   eval("page" + id + " = window.open(strLocation, '" + id + "', 'toolbar=' + intToolbar + ',scrollbars=' + intScrollbars + ',location=' + intLocation + ',statusbar=' + intStatusbar + ',menubar=' + intMenubar + ',resizable=' + intResizable + ',width=' + intWidth + ',height=' + intHeight + ',left = 0,top = 0');");
}



function doLoad()
{
    // the timeout value should be the same as in the "refresh" meta-tag
    setTimeout( "refresh()", 900*1000 );
}

function refresh()
{
    //  This version of the refresh function will cause a new
    //  entry in the visitor's history.  It is provided for
    //  those browsers that only support JavaScript 1.0.
    //
    window.location.href = sURL;
}
//-->



<!--
function refresh()
{
    //  This version does NOT cause an entry in the browser's
    //  page view history.  Most browsers will always retrieve
    //  the document from the web-server whether it is already
    //  in the browsers page-cache or not.
    //  
    window.location.replace( sURL );
}
//-->


<!--
function refresh()
{
    //  This version of the refresh function will be invoked
    //  for browsers that support JavaScript version 1.2
 
    window.location.reload( true );
}
//-->


<!--
function funClock() {
    doLoad;
    if (!document.layers && !document.all)
        return;
    var runTime = new Date();
    var gmtMS = runTime.getTime() + (runTime.getTimezoneOffset() * 60000);
    var gmtTime =  new Date(gmtMS);
    var gmtHour = gmtTime.getHours();
    var gmtMinute = gmtTime.getMinutes();
    var gmtSecond = gmtTime.getSeconds();
    var hours = runTime.getHours();
    var hourstf = runTime.getHours();
    var minutes = runTime.getMinutes();
    var seconds = runTime.getSeconds();
    var dn = "AM";
    if (hours >= 12) {
        dn = "PM";
        hours = hours - 12;
    }
    if (hours == 0) {
        hours = 12;
    }
    if (minutes <= 9) {
        minutes = "0" + minutes;
    }

    movingtime = ((hours < 10) ? "0" : "") + hours + ":" + minutes + " " + dn;
    timetf = hourstf + "" + minutes;
    time = "" + ((gmtHour < 10) ? "0" : "") + gmtHour;
    time += ((gmtMinute < 10) ? "0" : "") + gmtMinute + "Z";

    if (document.layers) {
        document.layers.clock.document.write(movingtime);
        document.layers.clock.document.close();
        document.layers.clocktf.document.write(timetf);
        document.layers.clocktf.document.close();
        document.layers.GMTclock.document.write(time);
        document.layers.GMTclock.document.close();
    }
    else if (document.all) {
        clock.innerHTML = movingtime;
        clocktf.innerHTML = timetf;
        GMTclock.innerHTML = time;
    }
    setTimeout("funClock()", 1000)
}

function checkAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = true ;
}

function uncheckAll(field)
{
for (i = 0; i < field.length; i++)
	field[i].checked = false ;
}

//-->