//<!--
// fonction d'ouverture d'une fenêtre POP-UP
function open_win(ima,w,h,n,s)
{
   var l=window.screen.width-w-8;
   mywin =
   window.open(ima,n,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=1,width='+w+',height='+h+',top=0,left='+l);
   mywin.focus();
}

// fonction de changement du titre apres chargement de la page
function changeTitre(nouveau_titre)
{
        if (nouveau_titre && window.document)
        window.document.title = nouveau_titre;
}
//-->