$(function() {

	$(".dialog").dialog({
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
				$('form input[value=]:first').focus(); 
			}
		}
	});
	$("#dialog_refresh").dialog({
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close');
				if($("#dialog_refresh").attr('alt')!=''){
					document.location.href = ($("#dialog_refresh").attr('alt'));
				} else {
					document.location.href = document.location.href;
				}
			}
		}
	});
});

function reload() {
	document.location.href = document.location.href;
}

