$(function(){
	$("#alert").dialog({
		autoOpen: true,
		modal:true,
		buttons : {
			"OK" : function() {
				$(this).dialog("close");
			}       

    	}
	});
	
	$("#alert_box").dialog({
		autoOpen: false,
		modal:true,
		buttons : {
			"OK" : function() {
				$(this).dialog("close");
			}       

    	}
	});	
});



function showAlert(txt){
	$("#alert_box").html(txt);
	$("#alert_box").dialog("open");
}
