Написал то, что хотел на jqiery ui) юзайте)
window.alert=function(message){
if($("#alert").length>0){
// exists
$('#alert').html(message);
}
else
{
var input_alert = $('<div>', {
id: 'alert',
text: message,
style: 'display:none;',
});
}
$('body').append(input_alert);
$('#alert').dialog({
height: 'auto',
resizable: false,
width: 'auto',
zIndex: 530,
close: function(event, ui) {
$("#alert").dialog("destroy");
$("#alert").html('');
}
});
};