<!--
function mOvr(src,clrOver) { if (!src.contains(event.fromElement)) { src.style.cursor = 'hand'; src.bgColor = clrOver; }}
function mOut(src,clrIn) { if (!src.contains(event.toElement)) { src.style.cursor = 'default'; src.bgColor = clrIn; }} 
function mClk(src, strLink)
{
function openSettings()
{
    var strAppName = navigator.appName;
    var nAppVersion = navigator.appVersion.charAt(0);
    var nAppVersion = eval(nAppVersion);

    if (!g_winSettings || g_winSettings.closed)
    {
        g_winSettings = window.open("/preferences/default.asp","g_winSettings","scrollbars,resizable,width=550,height=400,alwaysRaised,hotkeys,dependent");
        //make sure that the new window has a reference to this window
        if (g_winSettings.opener == null)
            g_winSettings.opener = self;
    }
    else if ((strAppName.indexOf("Netscape") > -1  && nAppVersion >= 4) || (nAppVersion >= 4 && strAppName.indexOf("Explorer") > -1))
        g_winSettings.window.focus();
}
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
