// JavaScript Document
function popup(url) {
        window.open(url, 'WebTitan',"location=yes,menubar=yes,personalbar=yes,resizable=yes,locationbar=yes,scrollbars=yes,directories=no,statusbar=yes,toolbar=yes");
        return false;
}
function popup2(url, width, height) {
        PosX = (screen.width - width) / 2;
        PosY = (screen.height - height) / 2;
        window.open(url, 'WebTitan', "width=" + width + ",height="+height+",location=no,menubar=no,personalbar=no,resizable=yes, top="+PosY+",left="+PosX+",screenX=" + PosX +",screenY=" + PosY + ",locationbar=no,scrollbars=yes,directories=no,statusbar=no,toolbar=no");
}
function afficher(div_id) { document.getElementById(div_id).style.display = 'block'; }
function cacher(div_id) { document.getElementById(div_id).style.display = 'none'; }
function message(div_id, div_msg) { document.getElementById(div_id).innerHTML = div_msg; }
function toggledisp(div_id) {
        var element = document.getElementById(div_id);
        var oldvalue = element.style.display;
        if(oldvalue.indexOf("none") == -1) {
                element.style.display = "none"; }
        else {
                element.style.display = "block"; }
        return false;
}