function insertContact(theName, linkText)
{
	theDomain = 'a' + 'ol' + '.com';
	theAddress = theName + "&#064;" + theDomain;

	document.write("<A class='menu' HREF=\"mailto");
	document.write(":" + theAddress);
	document.write( "\">" + theAddress + "<\/a>");
}

function showEmail(theName)
{
	theDomain = 'a' + 'ol' + '.com';
	theAddress = theName + "&#064;" + theDomain;
	showString = "<A class='menu' HREF=\"mailto" + ":" + theAddress + "\">" + theAddress + "<\/a>";
	return (showString);
}