function PopupCentrer(page,largeur,hauteur,options) {
    var top=(screen.height-hauteur)/2;
    var left=(screen.width-largeur)/2;
    window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}
function getClientSize()
{
    /* http://www.howtocreate.co.uk/tutorials/javascript/browserwindow */
    return Array((document.documentElement && document.documentElement.clientWidth) || window.innerWidth || self.innerWidth || document.body.clientWidth,(document.documentElement && document.documentElement.clientHeight) || window.innerHeight || self.innerHeight || document.body.clientHeight);
}
function flash(texte, titre, bgcolor, fgcolor, textcolor, titrecolor) {    
    overlib( texte,
        CAPTION, titre,
        BGCOLOR, bgcolor,
        FGCOLOR, fgcolor,
        TEXTCOLOR, textcolor,
        CLOSETEXT, 'Fermer',
        CLOSECOLOR, titrecolor,
        CENTERPOPUP,
        CLOSECLICK, STICKY);
}
function settext(el, texte) {
    document.getElementById(el).innerHTML=texte;
}
