| 1 | <!-- BEGIN main_block -->
 | 
  
    | 2 | 
 | 
  
    | 3 | <form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
 | 
  
    | 4 | 
 | 
  
    | 5 | <h2>{HEADING_INSTALL_LANGUAGE}</h2>
 | 
  
    | 6 | 
 | 
  
    | 7 | <table cellpadding="2" cellspacing="0" border="0" width="100%">
 | 
  
    | 8 | <tr>
 | 
  
    | 9 | 	<td>
 | 
  
    | 10 | 		<script language="javascript" type="text/javascript">
 | 
  
    | 11 | 		document.install.file.focus();
 | 
  
    | 12 | 		</script>
 | 
  
    | 13 | 		<input type="file" name="userfile" size="82%" />
 | 
  
    | 14 | 	</td>
 | 
  
    | 15 | 	<td width="110" align="left">
 | 
  
    | 16 | 		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
 | 
  
    | 17 | 	</td>
 | 
  
    | 18 | </tr>
 | 
  
    | 19 | </table>
 | 
  
    | 20 | 
 | 
  
    | 21 | <br />
 | 
  
    | 22 | 
 | 
  
    | 23 | </form>
 | 
  
    | 24 | 
 | 
  
    | 25 | <form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
 | 
  
    | 26 | 
 | 
  
    | 27 | <h2>{HEADING_UNINSTALL_LANGUAGE}</h2>
 | 
  
    | 28 | 
 | 
  
    | 29 | <table cellpadding="2" cellspacing="0" border="0" width="100%">
 | 
  
    | 30 | <tr>
 | 
  
    | 31 | 	<td>
 | 
  
    | 32 | 		<select name="code" style="width: 97%;">
 | 
  
    | 33 | 		<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
 | 
  
    | 34 | 		<!-- BEGIN language_list_block -->
 | 
  
    | 35 | 			<option value="{VALUE}">{NAME}</option>
 | 
  
    | 36 | 		<!-- END language_list_block -->
 | 
  
    | 37 | 		</select>
 | 
  
    | 38 | 	</td>
 | 
  
    | 39 | 	<td width="110">
 | 
  
    | 40 | 		<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
 | 
  
    | 41 | 	</td>
 | 
  
    | 42 | </tr>
 | 
  
    | 43 | </table>
 | 
  
    | 44 | 
 | 
  
    | 45 | <br />
 | 
  
    | 46 | 
 | 
  
    | 47 | </form>
 | 
  
    | 48 | 
 | 
  
    | 49 | <form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
 | 
  
    | 50 | 
 | 
  
    | 51 | <h2>{HEADING_LANGUAGE_DETAILS}</h2>
 | 
  
    | 52 | 
 | 
  
    | 53 | <table cellpadding="2" cellspacing="0" border="0" width="100%">
 | 
  
    | 54 | <tr>
 | 
  
    | 55 | 	<td>
 | 
  
    | 56 | 		<select name="code" style="width: 97%;">
 | 
  
    | 57 | 		<option value="" selected>{TEXT_PLEASE_SELECT}...</option>
 | 
  
    | 58 | 		<!-- BEGIN language_list_block -->
 | 
  
    | 59 | 			<option value="{VALUE}">{NAME}</option>
 | 
  
    | 60 | 		<!-- END language_list_block -->
 | 
  
    | 61 | 		</select>
 | 
  
    | 62 | 	</td>
 | 
  
    | 63 | 	<td width="110">
 | 
  
    | 64 | 		<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
 | 
  
    | 65 | 	</td>
 | 
  
    | 66 | </tr>
 | 
  
    | 67 | </table>
 | 
  
    | 68 | 
 | 
  
    | 69 | </form>
 | 
  
    | 70 | 
 | 
  
    | 71 | <!-- END main_block -->
 |