//* write out the code for the standard page footer including copyright and date modified
  var modiDate = new Date(document.lastModified);
  var modiYear = modiDate.getYear();
  modiYear = (modiYear < 2000) ? modiYear + 1900 : modiYear;

document.write(

"<table width=100% cellspacing=0 cellpadding=0>"+
"<tr><td align=left valign=top width=33%>"+

"   <table width=100% cellspacing=0 cellpadding=0>"+
"   <tr><td class=menu width=35>"+
"<a class=menu href='default.htm' target='_top'><img src='images/goback_t.gif' height=32 width=32 alt='go back' align=middle border=0 title='Back to Home Page'></a></td>"+
"      <td class=menu><a class=menu href='default.htm' target='_top'>BACK to InformationSpan home page</a>"+
"<br />&nbsp;or go back <a href='javascript:history.go(-1)' class=menu><font color='#407509'>just one step</font></a></td>"+
"   </tr></table>"+

"</td>"+
"<td align=center width=34% class=menu><font color='#407509'>Copyright &copy; InformationSpan 2008");
if (modiYear > 2008) {
	document.write(" - "+modiYear)};
document.write("<br />3.6 Jun 2010</font></td>"+

"<td align=right width=33% class=menu><font color='blue'>Problems with the site? Please <a class=menu href='home/contact.htm' target='body'><font color='#407509'>tell us</font></a>"+
"<br />(designed for <a class=menu href='http://www.mozilla.com/firefox' target='_new' class=menu>Firefox</a> 3, checked with IE 7)</font>"+
"<br /><font color='#333333'>check your browser/font size (100%, medium)</font>"+
"</td>"+

"</tr></table>"

)