var macMode = 0
if ( navigator.userAgent.indexOf("Mac") > 0) {
macMode = 1;
}
function OpenWinCast(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
    function go(form) {
       url = form.linkList.options[form.linkList.selectedIndex].value;
       if (url != "-" )  parent.main.location = url;
    }
    function gosubmit() {
       url = document.forms[0].linkList.options[document.forms[0].linkList.selectedIndex].value;
       if (url != "-" )  parent.main.location = url;
    }