function WindowVisu(url, titre, winStats){
    if (arguments.length < 3) winStats = "";
    if (arguments.length < 2) titre = "";
    if (navigator.appName.indexOf("Microsoft") < 0) {
    	winStats = winStats.replace(/width/i, 'innerWidth');
    	winStats = winStats.replace(/height/i, 'innerHeight');
    	winStats = winStats.replace(/left/i, 'screenX');
    	winStats = winStats.replace(/top/i, 'screenY');
    }
    try {
        eval('if (top.win' + titre + ' && !(top.win' + titre + '.closed)) top.win' + titre + '.close();');
    } catch (e) {}
	eval('win' + titre + ' = window.open(url, titre, winStats);');
	eval('if (win' + titre + ') win' + titre + '.focus();');
}

