<!-- hide from old browsers

function win_popup(urllink, params, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable, copyhistory){
window.open(urllink+params, '', 'width='+width+', height='+height+', toolbar='+toolbar+', location='+location+', directories='+directories+', status='+status+', menubar='+menubar+', scrollbars='+scrollbars+', resizable='+resizable+', copyhistory='+copyhistory+'');
return false;
}


function jsClock24hr(){
var time = new Date()
var hour = time.getHours()
var minute = time.getMinutes()
var second = time.getSeconds()
var temp = "" + ((hour < 10) ? "0" : "") + hour
temp += ((minute < 10) ? ":0" : ":") + minute
temp += ((second < 10) ? ":0" : ":") + second
document.clockForm24hr.digits.value = temp
id = setTimeout("jsClock24hr()",1000)
}


function high(which2){
theobject=which2
highlighting=setInterval ("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters. alpha.opacity=10
}
function highlightit(cur2){
if (cur2.filters.alpha. opacity<100)
cur2.filters.alpha. opacity+=5
else if (window. highlighting)
clearInterval (highlighting)
}

-->
