| 1 | <!-- BEGIN main_block -->
 | 
  
    | 2 | 
 | 
  
    | 3 | <style>
 | 
  
    | 4 | .hide {
 | 
  
    | 5 | 	display: none;
 | 
  
    | 6 | }
 | 
  
    | 7 | </style>
 | 
  
    | 8 | 
 | 
  
    | 9 | <form name="rename" action="rename2.php" method="post">
 | 
  
    | 10 | <input type="hidden" name="dir" value="{DIR}" />
 | 
  
    | 11 | <input type="hidden" name="old_name" value="{FILENAME}" />
 | 
  
    | 12 | <input type="hidden" name="id" value="{FILE_ID}" />
 | 
  
    | 13 | 
 | 
  
    | 14 | <table cellpadding="5" cellspacing="0" border="0" width="400" align="center">
 | 
  
    | 15 | <tr>
 | 
  
    | 16 | 	<td align="center" colspan="2">{TEXT_RENAME} '{FILENAME}' {TEXT_TO}:</td>
 | 
  
    | 17 | </tr>
 | 
  
    | 18 | <tr>
 | 
  
    | 19 | 	<td>
 | 
  
    | 20 | 		<input type="text" name="name" style="width: 100%;" />
 | 
  
    | 21 | 		<script type="text/javascript" language="javascript">
 | 
  
    | 22 | 		document.rename.name.focus();
 | 
  
    | 23 | 		</script>
 | 
  
    | 24 | 	</td>
 | 
  
    | 25 | 	<td width="50" class="{DISPlAY_EXTENSION}">
 | 
  
    | 26 | 		<input type="text" name="extension" style="width: 50px;" value="{EXTENSION}" />
 | 
  
    | 27 | 	</td>
 | 
  
    | 28 | </tr>
 | 
  
    | 29 | <tr>
 | 
  
    | 30 | 	<td colspan="2">
 | 
  
    | 31 | 		<input type="checkbox" name="overwrite" id="overwrite" value="yes" />
 | 
  
    | 32 | 		<a href="javascript: toggle_checkbox('overwrite');">
 | 
  
    | 33 | 		{TEXT_OVERWRITE_EXISTING} {TYPE}
 | 
  
    | 34 | 		</a>
 | 
  
    | 35 | 	</td>
 | 
  
    | 36 | </tr>
 | 
  
    | 37 | <tr>
 | 
  
    | 38 | 	<td colspan="2">
 | 
  
    | 39 | 		<input type="submit" name="submit" value="{TEXT_RENAME}" style="width: 49%;" />
 | 
  
    | 40 | 		<input type="button" name="cancel" value="{TEXT_CANCEL}" style="width: 49%;" onclick="javascript: window.location = 'browse.php';" />
 | 
  
    | 41 | 	</td>
 | 
  
    | 42 | </tr>
 | 
  
    | 43 | </table>
 | 
  
    | 44 | 
 | 
  
    | 45 | </form>
 | 
  
    | 46 | 
 | 
  
    | 47 | </td>
 | 
  
    | 48 | </tr>
 | 
  
    | 49 | </table>
 | 
  
    | 50 | 
 | 
  
    | 51 | </body>
 | 
  
    | 52 | </html>
 | 
  
    | 53 | 
 | 
  
    | 54 | <!-- END main_block -->
 |