Changeset 11466 for branches/dev


Ignore:
Timestamp:
2007/02/28 17:49:08 (19 years ago)
Author:
uehara
Message:
 
Location:
branches/dev/html
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/install/templates/agreement.tpl

    r399 r11466  
    3030    </td> 
    3131</tr> 
    32 <tr><td align="left" class="fs12"><input type="radio" id="ok" name="send_info" checked value=true><label for="ok">¤Ï¤¤(¿ä¾©)</label>¡¡<input type="radio" id="ng" name="send_info" value=false><label for="ng">¤¤¤¤¤¨</label></td></tr> 
     32<tr><td align="left" class="fs12"><input type="radio" id="ok" name="send_info" checked value=true onclick="fnChangeVisible('ok', 'next'); return false;"><label for="ok">Ʊ°Õ¤¹¤ë</label>¡¡<input type="radio" id="ng" name="send_info" value=false onclick="fnChangeVisible('ok', 'next'); return false;"><label for="ng">Ʊ°Õ¤·¤Ê¤¤</label></td></tr> 
    3333</table> 
    3434 
     
    3838        <td align="center"> 
    3939        <a href="#" onmouseover="chgImg('../img/install/back_on.jpg','back')" onmouseout="chgImg('../img/install/back.jpg','back')" onclick="document.form1['mode'].value='return_welcome';document.form1.submit();" /><img  width="105" src="../img/install/back.jpg"  height="24" alt="Á°¤ØÌá¤ë" border="0" name="back"></a> 
    40         <input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next"> 
     40        <input type="image" onMouseover="chgImgImageSubmit('../img/install/next_on.jpg',this)" onMouseout="chgImgImageSubmit('../img/install/next.jpg',this)" src="../img/install/next.jpg" width="105" height="24" alt="¼¡¤Ø¿Ê¤à" border="0" name="next" id="next"> 
    4141        </td> 
    4242    </tr> 
  • branches/dev/html/install/templates/install_frame.tpl

    r17 r11466  
    1616</head> 
    1717 
    18 <body bgcolor="#ffffff" text="#000000" link="#006699" vlink="#006699" alink="#006699" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preLoadImg('<!--{$smarty.const.URL_DIR}-->')"> 
     18<body bgcolor="#ffffff" text="#000000" link="#006699" vlink="#006699" alink="#006699" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preLoadImg('<!--{$smarty.const.URL_DIR}-->');<!--{$tpl_onload}-->"> 
    1919<noscript> 
    2020<link rel="stylesheet" href="../css/common.css" type="text/css" > 
  • branches/dev/html/js/site.js

    r302 r11466  
    359359} 
    360360 
     361// ¥é¥¸¥ª¥Ü¥¿¥ó¤Ë¤è¤ëɽ¼¨¡¦Èóɽ¼¨ 
     362function fnChangeVisible(check_id, mod_id){ 
     363    if (document.getElementById(check_id).checked){ 
     364        document.getElementById(mod_id).disabled = false; 
     365    } else { 
     366        document.getElementById(mod_id).disabled = true; 
     367    } 
     368} 
Note: See TracChangeset for help on using the changeset viewer.