function TMc_encode_email_address(addr, dom, tld) {
	return addr+'&#6'+'4;'+dom+'&#46;'+tld;
}

function TMc_encode_email_link(name, addr, dom, tld) {
	var at = '<img src="at.gif" alt="at" width="16" height="14" border="0" align="absbottom">';
	document.write('<a href="'+'mai'+'lto' +'&#58;');
	document.write(TMc_encode_email_address(addr, dom, tld));
	document.write('" title="e-mail '+name+'">'+addr+at+dom+'&#46;'+tld+'</a>');
}

var newWin = null; 
function TMc_pop_up(strURL, strType, strHeight, strWidth) { 
	 if (newWin != null && !newWin.closed) 
	   newWin.close(); 
	 var strOptions=""; 
	 if (strType=="console") 
	   strOptions="resizable,scrollbars,height="+strHeight+",width="+strWidth; 
	 if (strType=="fixed") 
	   strOptions="status,height="+strHeight+",width="+strWidth; 
	 if (strType=="elastic") 
	   strOptions="toolbar,menubar,scrollbars,"+"resizable,location,height="+
		strHeight+",width="+strWidth; 
	 newWin = window.open(strURL, 'newWin', strOptions); 
	 newWin.focus(); 
}
