<!--
// Ajoute la fonction trim comme méthode de l'objet String.
String.prototype.trim = function()
{ return this.replace(/(^\s*)|(\s*$)/g, ""); }

// Ajoute la fonction string comme méthode de l'objet String.
String.prototype.string = function(nb)
{ var tmp=""; for(var i=1;i<=nb;i++) tmp+=this; return tmp; }

function affiche() {
	accomp1div.style.visibility='visible';
}

function efface() {
	accomp1div.style.visibility='hidden';
}

function affiche_courriel(texte1,texte,nom,prestataire,style)
{
var tg="<";
var arob="@";
document.write(texte1+tg+"a hr"+"ef=mai"+"lto:"+nom);
document.write(arob+prestataire+" class=" + style + ">"+texte+tg+"/a><br />");
}


//-->


