function writeEmail(receiver, domain){
    domain = (domain == undefined)? "pupp.com" : domain;
	var mail = '<a href="mailto:' + receiver + String.fromCharCode(64) +  domain + '">' + receiver + String.fromCharCode(64) + domain + '</a>';
	document.write(mail);
}