<!--
//---------------------------------------------

// Create email link
	function myEmailLinkCreate(iFirst, iSecond, iThird){
		var str;
		str = "<a href='mailto:" + iFirst + "@" + iSecond + "." + iThird + "' class='link'>";
		str = str + iFirst + "@" + iSecond + "." + iThird + "</a>"
		document.write(str);
	}
	
//-->