/*This file encrypts the contactus_secretary e-mail address
***************************************************
*  The functions were written by N. M.Hollier
*  Please feel free to use any part of this script provided you keep
*  this text in place and the web address www.cheviotschallenge.org.uk
*
*********************************************************************/

function hideEmail(){
var emailarray= new Array(119,101,98,109,97,115,116,101,114,64,99,104,101,118,105,111,116,115,99,104,97,108,108,101,110,103,101,46,111,114,103,46,117,107)
var postemail=''
for (i=0;i<emailarray.length;i++){
postemail+=String.fromCharCode(emailarray[i])
}
document.contactus.action="mailto:" + postemail 
//document.write('<a href="mailto:'+postemaildesigner+'"><img src="Images/mail.gif"></a>')
}
