// JavaScript Document

function show_dialog() {
	$('#dialog').dialog({
		autoOpen: false,
		bgiframe:true,
		width:700,
		height:600
 	});
	$(function() {
		$("#dialog").dialog('open');
	});
}
