﻿

function opencpe(){
    $find("ctl00_cphBody_cpeAbout")._doOpen();
    setTimeout("window.location.hash = 'LearnMore'",500);
    
};

function LearnMore(){  
    var collPanel = $find("ctl00_cphBody_cpeAbout");
    if (collPanel.get_Collapsed())
        {
        collPanel.set_Collapsed(false);
        window.location.hash = "LearnMore";
        }
    else
        {collPanel.set_Collapsed(true);}
};