
function changePage(page)
    {
    if ((new String(page)).match(new RegExp(".*login.*", "i")))
        window.location.href = page + "?redirect=" + window.location.href;
    else
        window.location.href = page;
    page.target = '_blank';
    }

function mouseOn(td)
    {
    if (document.getElementByID || (document.all && !(document.getElementbyID))) 
        {
        td.style.backgroundColor = "#BBBB77";
        td.style.cursor = "hand";
        }
    } //close function onMouse

function mouseOff(td)
    {
    if (document.getElementByID || (document.all && !(document.getElementbyID))) 
        {
        td.style.backgroundColor = "#888844";
        }
    } //close function onMouse

function mouseClick(td)
    {
    if (document.getElementByID || (document.all && !(document.getElementbyID))) 
        {
        td.style.backgroundColor = "#6d7843";
        }
    } //close function onMouse

function MM_openBrWindow(theURL, winName, features)
    {
    // v2.0
    window.open (theURL,winName,features);
    }

function MM_jumpMenu(targ, selObj, restore)
    {
    // v3.0
    eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
    if (restore)
        selObj.selectedIndex = 0;
    }
 


