//ポップアップウィンドウスクリプト 1

function openWin(wUrl , wName , Width , Height , Resize , Status , Scroll){
	wOption = "toolbar=no,location=no,directories=no,status=" + Status +",menubar=no,scrollbars=" + Scroll +",resizable=" + Resize +",width=" + Width + ",height=" + Height + ",left=";
	w = window.open(wUrl,wName,wOption);
	w.focus();
}