// To cloak the HATS email address, 'a' is an array containing the email address split into several parts and munged
var a = new Array('k','o%23u','o%23c','aho','antheatre@y','hornde','ilto:','ma');
// 'b' is a concatenation of the array to reconstiute the email address
var b = a[7]+a[6]+a[5]+a[4]+a[3]+a[2]+a[1]+a[0]; 

function deCode(s) { // replaces %23 (illegal '#' char.) with '.'
	return s.replace(/%23/g,".");
}
function goMail(url) {
	url += '?subject=HATS Web query';
	url += '&body=Dear HATS,%0A%0A';
	window.location = url;
}
