	function beginAddress (thisName, thisSite)	{
		if (thisSite == "")	{
			var theAddress		= "email.sjsu.edu";
		}
		else	{
			var theAddress		= thisSite;
		}

		var theAddressString	= '<a href="mai'
		theAddressString			= theAddressString + 'lto:' + thisName + '@' + theAddress + '">'
		document.write (theAddressString);
	}

	function endAddress ()	{
		document.write ('</a>');
	}
