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

