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 externalSite(thePath) {
    window.open(thePath);
    return false
}
