<!-- Begin

function NewWindow(mypage, myname, w, h, scroll) {
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
    win = window.open(mypage, myname, winprops)
    if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function high(which2) {
    theobject=which2
    highlighting=setInterval("highlightit(theobject)",90)
}

function low(which2) {
    clearInterval(highlighting)
    which2.filters.alpha.opacity=50
}


function highlightit(cur2){
    if (cur2.filters.alpha.opacity<100)
        cur2.filters.alpha.opacity+=5
    else if (window.highlighting)
        clearInterval(highlighting)
}

-->
