
//ウィンドウオープン処理
function openWin(wUrl,wName,wWidth,wHeight){
	wOption = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + wWidth + ",height=" + wHeight;
	w01 = window.open(wUrl,wName,wOption);
}
