function WriteMenu (DocLoc, Text) {
var sitename="http://www.srp.org.uk";
	if (top.location.href == sitename + DocLoc) {
	window.document.write ("<P class='menuhere' align='center'>" + Text + "</P>");
	}
	else {
	document.write ('<P class="menulink" ONMOUSEOVER="this.className=');
  	document.write ("'menulinkhover'");
 	document.write ('" ONMOUSEOUT="this.className=');
 	document.write ("'menulink'");   
	document.write ('" ONMOUSEUP="top.location=('); 
	document.write ("'" + DocLoc + "')");
	document.write ('">');	
	document.write ("<a href='" + DocLoc + "'>" + Text + "</A></P>");	}
}

