function graph_mail_link(domain, account, picture, w, h, alt) {
	dog = '@';
	document.write('<a href=\"mailto:' + account + dog + domain + '\">');
	document.write('<img src="' + picture + '" width="' + w + '" height="' + h + '" border="0" alt="' + alt + '" />'); 
	document.write('</a>'); 
}
function text_mail_link(domain, account) {
	dog = '@';
	document.write('<a href=\"mailto:' + account + dog + domain + '\">');
	document.write(account + dog + domain); 
	document.write('</a>'); 
}