function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

function popup(strUrl,iWidth,iHeight,options){
largeur=iWidth;hauteur=iHeight;wtop=(screen.height-hauteur)/2;wleft=(screen.width-largeur)/2;
if(!options) options="resizable=no,location=no,menubar=no,status=no,scrollbars=yes";
options = "top="+wtop+",left="+wleft+",width="+largeur+",height="+hauteur+","+options;
window.open(strUrl,'',options);
}

function toggle( targetId ){
  if (document.getElementById){
        target = document.getElementById( targetId );
           if (target.style.display == "none"){
              target.style.display = "block";
           } else {
              target.style.display = "none";
           }
     }
  }
function onoff( cible, url ){
  
        imageon= url + "on.gif";
        imageoff=url + "off.gif";
        cible = document.getElementById( cible );
	      if (cible.style.background == "transparent url("+ imageoff + ") no-repeat scroll -4px 0px"){
              cible.style.background = "url("+ imageon +") no-repeat -4px 0px";
           } else {
              cible.style.background = "url("+ imageoff +") no-repeat -4px 0px";
           }
     
  }



