My Get File LastMod Date Function reads and displays the date the file was last modified. This means i do not have to update any strings anymore as the files date is changed whenever i upload an altered file to the server.

in order to get this Function...

Place the following code anywhere inside your <BODY> </BODY> tags ...
<font color="white" size="1">
<SCRIPT LANGUAGE = "JavaScript" TYPE = "text/javascript">
<!--
lastmod = document.lastModified ; lastmoddate = Date.parse(lastmod)
 if(lastmoddate == 0) { document.write('Page Last Modified : (UnKnown)') }
                else  { document.write('Page Last Modified : ' + lastmod) }
//-->
</SCRIPT>
<NOSCRIPT>
Page Last Modified : &quotNeeds JavaScript&quot;
</NOSCRIPT>
</font>