﻿// JavaScript Document

function openWin(){
	var win = new Window("win01",{
		url:"inquiry/inquiry.htm",
		title: "お問い合わせ",
		className: "dialog",
		top: 20, left: 540,
		width: 300,height: 300,
		zindex: 100,
		resizable: false,
		draggable: true
	});
	win.setDestroyOnClose();
	win.show();
}

function openWin01(){
	var win = new Window("win01",{
		url:"inquiry/inquiry.htm",
		title: "お問い合わせ",
		className: "dialog",
		top: 365, left: 125,
		width: 300,height: 300,
		zindex: 100,
		resizable: false,
		draggable: true
	});
	win.setDestroyOnClose();
	win.show();
}

function openWin03(){
	var win = new Window("win01",{
		url:"info/index.html",
		title: "画像が表示されない方",
		className: "dialog",
		top: 502, left: 182,
		width: 450,height: 300,
		zindex: 100,
		resizable: false,
		draggable: true
	});
	win.setDestroyOnClose();
	win.show();
}