        var data=new Array(
                613,617,609,612,636,615,562,636,
                609,614,621,635,584,634,617,638,
                614,617,617,614,620,636,609,614,
                621,635,550,619,615,613,520,581,
                617,609,612,552,613,621,520,636,
                609,614,621,635,584,634,617,638,
                614,617,617,614,620,636,609,614,
                621,635,550,619,615,613,520
        );

	function doMail()
        {
		doMailFor('This document maintained by domain webmaster \u2014 ');
        };

     function doMailFor(who)
        {
		if(!document.layers)
		{

			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));
		};
        };
