function showPopup(){
if( !document.getElementById ) return;
document.getElementById('popup').style.display = 'block';
}

function hidePopup(){
if( !document.getElementById ) return;
document.getElementById('popup').style.display = 'none';
}