// JavaScript Document
	<!--
	function safemail(name, domain, display) {
		// if domain is not specified, use our normal domain
		if (typeof(domain)=="undefined") domain = "lst.ac.uk";
		// if display is not specified, use name@domain
		document.write('<a ');
		if (typeof(display)=="undefined") {
			document.write('class="curlyl" ');
		}
		document.write('href="mai');
		document.write('lto:'+name);
		document.write('@');
		document.write(domain+'">');
		if (typeof(display)=="undefined") {
			document.write(name);
			document.write('@');
			document.write(domain);
		} else {
			document.write(display);
		}
		document.write('</a>');
	}
	// -->
