function open_popup(box) {
$("#bg-popup").show()
$(box).centered_popup();
$(box).delay(100).show(1); }
function close_popup(box) {
$(box).hide();
$(".close").click(function() {
$(".success").hide();
});
$('.success span, .warning span, .attention span, .information span').live('click', function() {
$(this).parent().fadeOut('slow', function() {
$(this).remove();
});
});
$('.success span').click(function(){
$(this).parents("div.success").fadeOut();
})