function openPage(){

URLStr="s_anniv.php";
popUpWin = open(URLStr, 'popUpWin', 'scrollbar=yes,resizable=1,toolbar=no,location=no,directories=no,status=no,copyhistory=yes,width=600,height=800');


}   

//Show me slider
function ShowMe(lien){

document.getElementById("slider1").innerHTML="<img src='"+lien+"'>";
}

function writediv(file,box)
{
     document.getElementById(box).innerHTML = file;
}


function file(fichier)
{
     if(window.XMLHttpRequest) // FIREFOX
          xhr_object = new XMLHttpRequest();
     else if(window.ActiveXObject) // IE
          xhr_object = new ActiveXObject("Microsoft.XMLHTTP");
     else
          return(false);
     xhr_object.open("GET", fichier, false);
     xhr_object.send(null);
     if(xhr_object.readyState == 4) return(xhr_object.responseText);
     else return(false);
 }
