function Win(flag,fichier,x,y)
         {
        if (window.newWindow) newWindow.close();
        var parametres = "resizable=0,toolbar=0,scrollbars=0,menubar=0,status=0,width=" + x + ",height=" + y;
        if (flag=="i")
                {

                        var newWindow=window.open("","fenetre1",parametres);
                        newWindow=window.open("","fenetre1",parametres);
                        newWindow.document.open();

                        newWindow.document.write('<HTML><HEAD><TITLE>ADORFIN.COM</TITLE></HEAD><BODY BGCOLOR = \"#C6C6C6\" onBlur=\"window.close()\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">');

                        newWindow.document.write('<P><CENTER><IMG SRC=\"' + fichier + '\"></CENTER>');
                        newWindow.document.write('</BODY></HTML>');
                        newWindow.document.close();
                        }

        if (flag=="f")
                {
                var newWindow=window.open(fichier,"fenetre1",parametres);
                newWindow=window.open(fichier,"fenetre1",parametres);
                }
        if ( (flag != "i") && (flag != "f") )
                alert("Le premier argument doit etre 'f' pour un fichier ou 'i' pour une image !");
        if (newWindow.moveTo) newWindow.moveTo(0,0);
        }

function stopError()
        {
        return true;
        }