/**
 * 
 * Fonksiyonun çalışması için id'si dialogs olan bir div gerekmektedir.
 * 
 * Örn : <div id="dialogs"></div>
 * 
 */
function warningDialog(style, title, message)
{
	style = ((style == '') ? 'alert' : style);
	title = ((title == '') ? 'Uyarı' : title);
		
	var retval = '';
	
	retval += '<div id="dialog-'+ style +'" title="'+ title +'" style="display:none;">';
	retval += '<p><span class="ui-icon ui-icon-'+ style +'" style="float:left; margin:0 7px 20px 0;"></span>'+ message +'</p>';
	retval += '</div>';
	
	$('#dialogs').html(retval);
	
	$("#dialog-"+ style).dialog({
		modal: true,
		buttons: {
			
		'Tamam': function() {
				$(this).dialog('close');
			}
		}
	});
}
