//サブウインドウを開く
	function openWin(url,wsize,hsize,wname,scroll) {
		var w = window;
		xp = 0;
		yp = 0;
		w = open(url,"" + wname + "", "location=no,menubar=no,resizable=no,scrollbars=" + scroll + ",status=no,toolbar=no,left=0,top=0,width=" + wsize + ",height=" + hsize + "");
		w.focus();
	}
//-->