
<!-- JavaScript
// all this really has is tutortable function....
function mailto(addr)
//despammer
{
window.open("mailto:"+addr.replace(/@\w/g,"@"),"_blank")
}
function popnews(pupbox)
{
popbox=window.open(pupbox,"popwin","width=550,height=350,resizable=yes,menubar=yes,left=0,top=0")
if(!popbox.opener){popbox.opener=self}
popbox.focus()
}

function navtable(target,bcolour,words){
dirbase=""
if(words==null){words=target.toUpperCase().substr(0,1)+target.substr(1)}
if(target.indexOf(".")<0){target+=".html";dirbase="";}
if(target=="Back.html"){target="javascript:history.back()"}
if (target=="#.html"){target="javascript: history.go(0);"}
document.write("<td bgcolor='"+bcolour+"'><p align='center' style='line-height:100%; margin-top:0; margin-bottom:0;'><a href=\""+dirbase+target+"\"><font face='Arial Black' color='white'>")
document.write(words+"</font></a></p></td>")
}
function tutortable(textcell1,textcell2,wordscell2,colour)
{

cell2=textcell2.replace(/\"/g,"&quot;")
document.write("<tr><td width=\"70%\"><p><b><font face=\"Arial\" size=\"3\">")
document.write(textcell1)
document.write("</font></b></p></td><td valign=\"middle\" align=\"center\" width=\"27%\" bgcolor=\"")
document.write(colour+"\"")
document.write("<b><a href=\"")
if(cell2.indexOf("javascript")>=0){
document.write("#\" onClick=\"")}
document.write(cell2)
document.write("\">")
document.write("<font face=\"Arial\" size=\"3\" ><b>")
document.write(wordscell2+"</font></a></b></td></tr>")
document.close()
}
// -->
