function initHistoryEvents(){

       document.getElementById('aHistory').onclick = function(){
        document.getElementById('history_popup').style.display = 'inline';
    }
    
    document.getElementById('aHistoryClose').onclick = function(){
        document.getElementById('history_popup').style.display = 'none';
    }
    
}

addLoadEvent(initHistoryEvents);
