$(function() {

		$( "#dialog-auth-message" ).dialog({
			autoOpen: true,
			height: 150,
			width: 300,
                        modal: true,
			buttons: {
				Ok: function() {
					$( this ).dialog( "close" );
				}
			}
		});
	});
