//for some reason wordpress won't render some links that have funny characters in them
//using this external JS file as a punt on finding the root cause which is probably buried
//in some plug-in
function GotoPage(intPageId){
    var newLocation = "";
    switch(intPageId){
        case "1":
            newLocation="http://www.adlnet.gov/Technologies/scorm/Custom%20Pages/Certified%20Products.aspx";
            break;
    }
    window.location = newLocation;
}