function joomUnlock()
{
jQuery('#jg_unlock_button').button('loading');
jQuery('#jg_password_response').text('');
jQuery.ajax('/bolzano/gallery.html?task=categories.unlock&catid=130&format=json', {
data: 'password=' + jQuery('#jg_password').val(),
type: 'post',
dataType: 'json',
success: function(r)
{
if(r.success)
{
document.location.reload();
}
else
{
jQuery('#jg_password_response').html('' + r.message + '');
jQuery('#jg_password').val('').focus();
jQuery('#jg_unlock_button').button('reset');
}
}
})};