document.write("\
			</table>\
		</td>\
	</tr>\
</table>\
<table cellspacing=0 cellpadding=1 width=138>\
	<tr>\
		<td class=x height=3>\
		</td>\
	</tr>\
</table>\
</body>\
</html>");

function iFrameMailTo(name,domain){
        var x = document.createElement('iframe');
        var d = document.getElementById('body');
        x.style.display="none";
        d.appendChild(x);
        x.src = 'mailto:'+name+ '@'+domain;
        d.removeChild(x);
}

function printMail(name,domain){
 document.write("<a style='text-decoration: none' href=\"javascript:iFrameMailTo('"+name+"','"+domain+"')\"><span style='border-bottom-style: solid;border-bottom-width: thin'>"+name+"<img style='border-style:none' src='/ecc/_shared/at.png'/>"+domain+"</span></a>");
}

