//PopUp Window Script Ver.1.01

//2006/8/6 Programed By Rikiya Takazawa



function openWin(wUrl , wName , Width , Height , Resize , Status , Scroll){

	x = (screen.width  - Width) / 2;

	y = (screen.height - Height) / 2;

	wOption = "resizable=no,menubar=no,toolbar=no,location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=" + x + ",top=" + y;

	w = window.open(wUrl,wName,wOption);

	w.focus();

}
