 function cache_mel(who,domaine,tld,comment) {
                var comt="<!-- " + comment + "-->";
                document.write("<a href=\"mai");
                document.write("lto:");
                document.write(who);
                document.write("@");
                document.write(domaine+".");
                document.write(tld);
                document.write("\">");
                document.write( comt+who+comt+"@"+comt+domaine+comt+"."+tld);
                document.write("</a>");
}

function centerPopup(element) {
	var height=document.getElementById(element).style.height;//hauteur de l'élément à positionner
	var width=document.getElementById(element).style.width;//largeur de l'élément à positionner
	myParent=document.getElementById(element).parentNode;
	var pHeight=window.screen.height;//Hauteur de l'élément parent
	var pWidth=window.screen.width;//Largeur de l'élément parent
	/*var sTop=myParent.scrollTop;//Hauteur de défilement de l'élément parent */
	/*var sLeft=myParent.scrollLeft;//Longueur de défilement de l'élément parent*/
	var posY=(pHeight/2)-(300);//Calcul de la position en Y
	var posX=(pWidth/2)-(455);//Calcul de la position en X
	document.getElementById(element).style.top=posY+"px";
	document.getElementById(element).style.left=posX+"px";
}