// JavaScript Document
// Copyright 2007 Steven Culshaw All Rights Reserved
// --------------------------------------------------
<!--
// javascript active page highlighting
function active(id,newClass) {
     identity=document.getElementById(id);
     identity.className=newClass;
}
//-->