1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 2<!-- 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben 5 * 6 * == BEGIN LICENSE == 7 * 8 * Licensed under the terms of any of the following licenses at your 9 * choice: 10 * 11 * - GNU General Public License Version 2 or later (the "GPL") 12 * http://www.gnu.org/licenses/gpl.html 13 * 14 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 * http://www.gnu.org/licenses/lgpl.html 16 * 17 * - Mozilla Public License Version 1.1 or later (the "MPL") 18 * http://www.mozilla.org/MPL/MPL-1.1.html 19 * 20 * == END LICENSE == 21 * 22 * This page shows the actual folder path. 23--> 24<html> 25 <head> 26 <link href="browser.css" type="text/css" rel="stylesheet"> 27 <script type="text/javascript"> 28 29function OnResize() 30{ 31 divName.style.width = "1px" ; 32 divName.style.width = tdName.offsetWidth + "px" ; 33} 34 35function SetCurrentFolder( resourceType, folderPath ) 36{ 37 document.getElementById('tdName').innerHTML = folderPath ; 38} 39 40window.onload = function() 41{ 42 window.top.IsLoadedActualFolder = true ; 43} 44 45 </script> 46 </head> 47 <body bottomMargin="0" topMargin="0"> 48 <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0"> 49 <tr> 50 <td> 51 <button style="WIDTH: 100%" type="button"> 52 <table cellSpacing="0" cellPadding="0" width="100%" border="0"> 53 <tr> 54 <td><img height="32" alt="" src="images/FolderOpened32.gif" width="32"></td> 55 <td> </td> 56 <td id="tdName" width="100%" nowrap class="ActualFolder">/</td> 57 <td> </td> 58 <td><img height="8" src="images/ButtonArrow.gif" width="12"></td> 59 <td> </td> 60 </tr> 61 </table> 62 </button> 63 </td> 64 </tr> 65 </table> 66 </body> 67</html> 68