//Lexar global javascript










//function displays rollover state when image is rolled over 

function over(imgName) {

    if (document.images) {

        document[imgName].src = eval(imgName + "_over.src");

    }

}

//function reverts image to normal state when image is rolled off

function off(imgName) {

    if (document.images) {

        document[imgName].src = eval(imgName + "_off.src");

    }

}










//function displays rollover states on self and another when image is rolled over 

function overherethere(imgName) {

    if (document.images) {

        document[imgName].src = eval(imgName + "_over.src");

        document["therebase"].src = eval(imgName + "_there" + "_over.src");

    }

}

//function reverts to normal states on self and another when image is rolled off

function offherethere(imgName) {

    if (document.images) {

        document[imgName].src = eval(imgName + "_off.src");

        document["therebase"].src = therebase.src;

    }

}










//function opens popup  window

function popUp(URL) {
    popWindow=window.open(URL,"popWindow","toolbar=no,width=420,height=280,status=no,scrollbars=yes,resizable=yes,menubar=no,location=no");

onClick=popWindow.focus();
    
    }
