//* write out the code for the standard page footer including copyright and date modified

//* NOTE: there is a straight HTML version of this in analystblogs which also needs to be updated

  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 border=0>"+
"<tr><td width=2%>&nbsp;</td>"+
"<td align=left valign=top width=30%>"+

"   <table width=100% cellspacing=0 cellpadding=0>"+
"   <tr><td width=35>"+
"<a href='default.htm' target='_top'><img src='images/goback_t.gif' height=32 width=32 alt='go back' align=top border=0 title='Back to Home Page'></a></td>"+
"      <td class='display'><a href='default.htm' target='_top'>BACK to InformationSpan home page</a></td>"+
"   </tr></table>"+


"</td>"+
"<td align=center width=33% class='display'><font color='#407509'>Text/images &copy; InformationSpan 2008 - ");
document.write(modiYear);
document.write("<br />5.4 April 2011</font>"+
"</td>"+

"<td align=right valign=top width=33% class='display'>"+
"<font color='blue'>Problems with the site? Please <a href='home/contact.htm' target='body'><font color='#407509'>tell us</font></a>"+
"<br />(designed for IE8 and <a href='http://www.mozilla.com/firefox' target='_new'>Firefox</a>, checked on some others)</font>"+
"</td>"+
"<td width=2%>&nbsp;</td>"+

"</tr></table>"

)
