$(document).ready(function() {
	$('table.form a').click(function() {
	    $('#message').dialog('open');
		return false;
	});
	$("#message").dialog({
			bgiframe: true,
			modal: true,
			autoOpen: false,
			overlay: {
				backgroundColor: '#000',
				opacity: 0.5
			},
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
	
});
