//this function puts headers & footers in the index.htm page, which contains the rpa

function header()
{ 
document.write ('<table width=548>');
document.write ('<tr>');
document.write ('<td align=left>');
document.write ('<img src="/graphics/trustwiselogo.gif">');
document.write ('</td>');
document.write ('<td align=right>');
document.write ('<img src="/graphics/verilogo.gif">');
document.write ('</td>');
document.write ('</tr>');
document.write ('</table>');
document.write ('<p>');

}

function copyright()
{
document.write ('<table width=548>');
document.write ('<tr>');
document.write ('<td>');
document.write ('<center>');
document.write ('<br>');
document.write ('<font face=arial size=1>Copyright &copy; British Telecommunications plc 2000</font>');
document.write ('</center>');
document.write ('</td>');
document.write ('</tr>');
document.write ('</table>');
}

