
function ucuphoto_showPopup(lnk, customerid) 
{
    var ResponseContainer = "span#ajaxresponse";  
    var $wrapper= $(lnk).parent().next("div.popup-description-wrapper");
    $wrapper.show();
    
    $.post("profile_description.aspx", { CustomerID: customerid }, function(response)
    {
        if (!$(response).is(ResponseContainer))
            $wrapper.hide();
        else    
            $wrapper.find("div.popup-description").html($(response).html());
    });
}

function ucuphoto_hidePopup(lnk) 
{
  $(lnk).parent().next("div.popup-description-wrapper").hide();
}

function ucuphoto_hideWrapper(div)
{
    $(div).hide();
}
