	function showMyEmail() {
		who='bill';
		at='@';
		where='caemmerer';
		dot='.';
		what='net';
		myAddr = who + at + where + dot + what;
		document.write ('<a href=\"mailto:' +myAddr + '\">' + myAddr + '</a>');
	}

