function ml( rcpt,subj ) // displays the recipient address
{
var cry1=String.fromCharCode(109,97,105,108,116,111,58);
document.write("email:&nbsp;<a href=\"");
document.write(cry1);
document.write( rcpt );
document.write(String.fromCharCode(64));
document.write("panorthfield.co.uk");
document.write("?subject=", subj, "\">");
document.write( rcpt );
document.write(String.fromCharCode(64));
document.write("panorthfield.co.uk ");
document.write("</a>");
}
function ml2( rcpt,subj ) // displays the subject
{
var cry1=String.fromCharCode(109,97,105,108,116,111,58);
document.write("email:&nbsp;<a href=\"");
document.write(cry1);
document.write( rcpt );
document.write(String.fromCharCode(64));
document.write("panorthfield.co.uk");
document.write("?subject=", subj, "\">");
document.write( subj );
document.write("</a>");
}
function hideem()
{
document.getElementById('menu1').style.display='none';
document.getElementById('menu2').style.display='none';
document.getElementById('menu3').style.display='none';
}
function hov(loc,cls)
{
if(loc.className)
	{
	loc.className=cls;
	}
}