	$(function() {
		$("#dialog").dialog({
			autoOpen: false,
			bgiframe: false,
			resizable: false,
			height:600,
			width:800,
			modal: true,


		});
		
		$("#openD").click(function(){
		$("#dialog").dialog("open");
  });
		
	});