﻿

function popup_out(id)
{
                            
    var el = document.getElementById(id);
                                    
    if (el!=null)
    {
        el.style.display = 'none';
    }
    return;
}
function popup_click(id)
{
    var el = document.getElementById(id);
                                
    if (el!=null)
    {
        el.style.display = 'none';
    }
    return;
}

function hide(id) {
    $("#" + id).parent().append("&nbsp;");
    $("#" + id).hide();
}