//PopUp Window Script Ver.1.01
//2006/8/6 Programed By Rikiya Takazawa

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();
}