        var data=new Array(
                217,213,221,216,192,219,142,195,
                209,214,217,213,199,192,209,198,
                244,195,221,218,208,199,219,218,
                211,154,208,209,217,219,218,154,
                215,219,154,193,223,180,217,213,
                221,216,148,217,209,180,195,209,
                214,217,213,199,192,209,198,244,
                195,221,218,208,199,219,218,211,
                154,208,209,217,219,218,154,215,
                219,154,193,223,180
        );

	function doMail()
        {
		doMailFor('This document maintained by domain webmaster \u2014 ');
        };

     function doMailFor(who)
        {
		if(!document.layers)
		{

			document.getElementById('date').appendChild(
				document.createTextNode(
					'Last updated - '+document.lastModified));
			document.getElementById('mailtag').removeChild(
				document.getElementById('mailtag').firstChild);
			document.getElementById('mailtag').appendChild(
				document.createTextNode(
					unescape(who)));
			document.getElementById('mailtag').appendChild(
				document.createElement('a'));

		        var idx=0, n=data[data.length-1];
		        var mailtext= '';
		        while( data[idx]!=n ) {
		                mailtext+=String.fromCharCode(data[idx++]^n);
		        }
		        idx++;

			document.getElementById('mailtag').lastChild.setAttribute(
				'href', mailtext);

		        mailtext= '';
		        while( data[idx]!=n ) {
		                mailtext+=String.fromCharCode(data[idx++]^n);
		        }
		        idx++;

			document.getElementById('mailtag').lastChild.setAttribute(
				'title', mailtext);

		        mailtext= '';
		        while( data[idx]!=n ) {
		                mailtext+=String.fromCharCode(data[idx++]^n);
		        }
		        idx++;

			document.getElementById('mailtag').lastChild.appendChild(
				document.createTextNode(mailtext));
		};
        };

