/****************************************************/ /*common.js */ /* 2002/12/12*/ /****************************************************/ /****************************************************/ /*リセット処理 */ /****************************************************/ function reset(FormName) { FormName.reset(); } /****************************************************/ /*クリア処理 */ /****************************************************/ function clearElements( FormName ) { for ( i = 0; i < FormName.elements.length; i++ ) { o = FormName.elements[i]; switch ( o.type ) { case "text": case "password": o.value=""; break; case "checkbox": case "radio": o.checked=null; break; case "select-one": case "select-multiple": o.selectedIndex=0 break; case "textarea": o.value=""; break; } } } /****************************************************/ /*終了確認画面表示処理 */ /****************************************************/ function cancelWindowOpen() { wx = 620; wy = 400; x = (screen.width - wx) / 2; y = (screen.height - wy) / 2; w = window.open("cancel.jsp","cancel","width="+wx+",height="+wy+",resizable=1,scrollbars=1,status=1"); } /****************************************************/ /*ロールオーバー処理 */ /****************************************************/ function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i"); } /****************************************************/ /* window 新規オープン用 */ /*id:画面に割り振られたID */ /****************************************************/ function newOpenWin(id){ wx = 720; wy = 580; x = (screen.width - wx) / 2; y = (screen.height - wy) / 2; window.open(id,"sub2","width="+wx+",height="+wy+",resizable=1,scrollbars=1,status=1"); } /********************************************************/ /* window 新規オープン用 */ /* 第一引数:画面のURL */ /* 第二引数:画面のサイズ(横) */ /* 第三引数:画面のサイズ(縦) */ /* 戻り値 :なし */ /********************************************************/ function rinkOpenWin(url,wx,wy){ window.open( url, "", "width="+wx+",height="+wy+",resizable=1,scrollbars=1,status=1"); }