<!--
function openWin(wUrl,wWidth,wHeight,wWin){
scWidthCenter=screen.availWidth/2;
scHeightCenter=screen.availHeight/2;
wOption=
"toolbar=no,resizable=no,directories=no,status=yes,menubar=yes,scrollbars=no,resizable=no,width=" + wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth/2)) + ",top=" + (scHeightCenter - (wHeight/2));
window.open(wUrl,wWin,wOption);
}

function menuLink(linkLoc){
mac = (navigator.appVersion.indexOf("Mac") != -1)?true:false;
ie=(navigator.appName.charAt(0) == "M")?true:false;
if(mac){

      if(ie){
                window.open(linkLoc);
                }

       else{
                window.open(linkLoc);
               }
}

else{

      if(ie){
                window.open(linkLoc);
                }

      else{
               self.location=linkLoc;
               }
}
}
//-->

