<!--
// This is Global Function
function printMailToLink(type)
{
var lhs = "service"
var rhs = "thompson.com"

	if (type == "address") 
	{
    	document.write("<" + "a href=\"mailto" + ":" + lhs + "&#64;" + rhs + "\" class= \"foot_links\" >");
	} 
	else if (type == "address1") 
	{
    	document.write("<" + "a href=\"mailto" + ":" + lhs + "&#64;" + rhs + "\" class= \"footlinks\" >");
       }

	else if (type == "address2") 
	{
       document.write("<" + "a href=\"mailto" + ":" + lhs + "&#64;" + rhs + "\">");
       }
   	else if (type == "address3") 
	{
    	document.write("<" + "a href=\"mailto" + ":" + lhs + "&#64;" + rhs + "\" class= \"nlanguage\" >");
	} 

document.write(lhs + "&#64;" + rhs);
document.write("<" + "/a" + ">");
}

//---------------------------------------------
// This Function for Employment Opportunities
//---------------------------------------------
function printMailToLinkEmpl(part1)
{
var part2 = "thompson.com"

document.write("<" + "a href=\"mailto" + ":" + part1 + "&#64;" + part2 + "\">");
document.write(part1 + "&#64;" + part2);
document.write("<" + "/a" + ">");
}
//-->
