function insertContact(theName, linkText)
{
	theDomain = 'amberley' + 'bakery' + '.co.uk';
	theAddress = theName + "&#064;" + theDomain;

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

function showEmail(theName)
{
	theDomain = 'amberley' + 'bakery' + '.co.uk';
	theAddress = theName + "&#064;" + theDomain;
	document.write("<a  href=\"mailto" + ":" + theAddress + "\">" + theAddress + "<\/a>");
	return (showEmail);
}


