function unsetFlashClass(objId) {
    myObj = document.getElementById(objId);
    if(myObj) myObj.className = '';
}

function popup(thePath,myWidth, myHeight,extraFeatures) {

    features = "width="+myWidth+", height="+myHeight;
    if(extraFeatures) {
        features = features + ','+extraFeatures;
    }

    myWindow = window.open(thePath, "popup", features);

    myWindow.focus();
    return false;
}

function enewsPop(myLoc) {
    myWindow = window.open(myLoc, "Register for ENews", "width=470, height=490");
    myWindow.focus();
    return false;
}

function emailPop(myLoc) {
    myWindow = window.open(myLoc, "emailPage", "width=470, height=400");
    myWindow.focus();
    return false;
}

