
function gatherEmailStat( businessId, address )
{
    $.get("/stat-gather.php", { type: "email", id: businessId, address: address } );
    return true;
}


function showAddress(ext,domain,name,title,_class,addtxt)
{
	var add = name + '@' + domain + '.' + ext;
	if (addtxt == "")
		addtxt = add;
	var str = '<a href="mail' + 'to:' + add + '"';
	if (title != "")
		str += ' title="'+title+'"';

	if (_class != "")
		str += ' class="'+_class+'"';
	str += '>' + addtxt + '</a>';
	document.write(str);
}
