﻿////////////////////////////////////////////////////////////////////
//	レベル表示ウインドウ表示
//												JavaScript
//													 by H.m
////////////////////////////////////////////////////////////////////
function WindowOpen(psAddress, nLeft, nTop, nWidth, nHeight)
{
	sFeatures = "top=" + nTop + ",left=" + nLeft + ",width=" + nWidth + ",height=" + nHeight + ",scrollbars=yes,resizable=no,menubar=yes";
	hWnd = window.open(psAddress, "child", sFeatures);
};
function WindowOpen1(psAddress, nLeft, nTop, nWidth, nHeight)
{
	sFeatures = "top=" + nTop + ",left=" + nLeft + ",width=" + nWidth + ",height=" + nHeight + ",scrollbars=no,resizable=no,menubar=no";
	hWnd = window.open(psAddress, "image", sFeatures);
};