/**
 ** This works out the last modified date for the page which calls it.
 **/
/**Month = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var LastMod = new Date(document.lastModified);
var LastModDay = LastMod.getDate();
var LastModMonth = LastMod.getMonth();
var LastModYear = LastMod.getYear();
LastModDate = LastModDay + " " + Month[LastModMonth] + " " + LastModYear;**/

document.write('<table cellspacing=0 cellpadding=0 width=100%>');
document.write('  <tr>');
/**document.write('    <td><h6>Last modified on ');
document.write(       LastModDate);
document.write('    </td>');**/
document.write('    <td align=right><a href="#top">^ Top</a></td>');
document.write('  </tr>');
document.write('</table>');
