// JavaScript Document

function show_dialog() {
	$('#dialog').dialog({
		autoOpen: false,
		bgiframe:true,
		width:300,
		height:500
 	});
	$(function() {
		$("#dialog").dialog('open');
	});
}

function show_dialog2() {
	$('#dialog2').dialog({
		autoOpen: false,
		bgiframe:true,
		width:300,
		height:500
 	});
	$(function() {
		$("#dialog2").dialog('open');
	});
}


function show_dialog3() {
	$('#dialog3').dialog({
		autoOpen: false,
		bgiframe:true,
		width:300,
		height:500
 	});
	$(function() {
		$("#dialog3").dialog('open');
	});
}

function show_dialog4() {
	$('#dialog4').dialog({
		autoOpen: false,
		bgiframe:true,
		width:600,
		height:700
 	});
	$(function() {
		$("#dialog4").dialog('open');
	});
}

function show_dialog5() {
	$('#dialog5').dialog({
		autoOpen: false,
		bgiframe:true,
		width:700,
		height:750
 	});
	$(function() {
		$("#dialog5").dialog('open');
	});
}


function show_dialog6() {
	$('#dialog6').dialog({
		autoOpen: false,
		bgiframe:true,
		width:750,
		height:450
 	});
	$(function() {
		$("#dialog6").dialog('open');
	});
}
