function showCommonDialog(message, title, color)
{
	$("#dialog").html('<font size=3 color=' + color +'>' + message + '</font>');
	$("#dialog").dialog({ 
	    buttons: { 
	        "Ok": function() { 
	            $(this).dialog("close"); 
	        }
	    },
	    title  : title, 
	    height : 150,  
	    width  : 300  
	});
}

