//Camby Liverson @ 2012-09-27 $(document).ready(function(e) { if($("#jalert").length<1) { $('
').appendTo("body"); $('
').appendTo("body"); $('').appendTo("body"); $('').appendTo("body"); } }); function jalert(msg,title) { var config = { resizable: false, draggable: false, height:270, width: 370, modal: true, show: { effect: 'fade' }, hide: { effect: 'fade' }, buttons: { "OK": function() { $( this ).dialog( "close" ); } }, zIndex: 100001 }; if(typeof(title)!='undefined') { config.title = title; } $("#dialog").html(msg).dialog(config); }