function insertContact(firstName, theDom, lastName, theSuffix)
{
	if (theDom == "uk.cohnwolfe") 
		theAddress	= 	(firstName + '_' + lastName + '&#064;' + theDom + '.' + theSuffix);
	else
		theAddress	= 	(firstName + '.' + lastName + '&#064;' + theDom + '.' + theSuffix);
	document.write('Email: <a href="mailto:' + theAddress + '">'+ theAddress +'</a>')
}

function insertContact2(theDom, lastName, theSuffix)
{
	theAddress	= 	(lastName + '&#064;' + theDom + '.' + theSuffix);
	document.write('<a href="mailto:' + theAddress + '">'+ theAddress +'</a>')
}

function insertContact3(theDom, lastName, theSuffix, theTitle)
{
	theAddress	= 	(lastName + '&#064;' + theDom + '.' + theSuffix);
	document.write('<a href="mailto:' + theAddress + '"' + ' title="Send Email to: ' + theTitle + '">'+ theAddress +'</a>')
}