/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function showPopUp(id){
    
    document.getElementById('popup').style.display = 'block';

}

function closePopUp(id)
{
    document.getElementById('popup').style.display = 'none';
}


