var t = $('#PopAlert');
if(content.length) $('div#Content', t).html(content);
Pop(t, function() {
$('.x',t).off('click').on('click',function(e) {
e.preventDefault();
showPop(t);
return false;
});
$('.ok',t).off('click').click(function (e) {
e.preventDefault();
showPop(t);
if(typeof cb == 'function'){ cb.call(this); }
return false ;
});
$(document).keypress(function(e) {
if(e.keyCode==13) { $('.ok', t).trigger('click'); }
if(e.keyCode==27) { $('.x', t).trigger('click'); }
});
});
};