//　open window ++++++++++++++++++++++++++++++++++++++++++++++++++++++////　窓サイズ、ファイル等、別指定verfunction callWin(winURL,w,h,opt) {	o = opt;	if (o == '') o = ',' + o;	win = window.open(winURL,"popWin",'width=' + w + ',height=' + h + o);	win.focus();	//　winURL：呼び出し先HTMLファイル名	//　w	：open window の横幅	//　h	：open window の縦幅}/*　---- option ----------------------------------------------------- >> * *　↑の別ウィンドウは全て、スクロールバー等なし、リサイズ不可なので、 *　必要な場合は以下を付加する。 *　・resizable=yes / no	リサイズの可否 *　・scrollbars=yes / no	スクロールバーの表示・非表示 *　・toolbar=yes / no		ツールバーの表示・非表示 *　・status=yes / no		ステータスバーの表示・非表示 *　・location=yes / no		ロケーションバーの表示・非表示 *　［記述例］win = window.open(winURL, "","height=300,width=300,resizable=yes,scrollbars=yes"); * */ //--- 以下200804用に平井が各ページより移設 20080325 -----------------------------------------------function miniWin(){	m = window.open("kojin/demo/index.html","demo","width=150,height=260");	m.focus();}function qrWin(){	q = window.open("kojin/mobile/qr-info.html","qr","width=420,height=300");	q.focus();}//---url置き換えfunction chg_url(tarurl){	rcnt = tarurl.search(/:/);	while(rcnt > 0){	tarurl = tarurl.replace(/:/,"%3A");	rcnt = tarurl.search(/:/);}rcnt = tarurl.search(/\//);	while(rcnt > 0){	tarurl = tarurl.replace(/\//,"%2F");	rcnt = tarurl.search(/\//);}rcnt = tarurl.search(/\?/);	while(rcnt > 0){	tarurl = tarurl.replace(/\?/,"%3F");	rcnt = tarurl.search(/\?/);}return tarurl;}	function Jump_File(path) {    w_file = window.open(path, "w_file", "TOOLBAR=yes,MENUBAR=yes,SCROLLBARS=yes,height=600,width=800,location=yes,RESIZABLE=yes,status=yes");    w_file.focus();}            