function view(file, nome, larghezza, altezza) {
    argc = view.arguments.length;
  
    // passo solamente file e nome
    if(argc == 2)
        Window = window.open("","","width=520 height=450");
    else if(argc == 4)
        Window=window.open("","","width=" + larghezza + " height=" + altezza);
    // il numero di parametri è errato
    else
       return;
  
    Window.document.open();
    Window.document.writeln("<html>");
    Window.document.writeln("<head>");
    Window.document.writeln("<meta name='Author' content='Marco Napolitano'>");
    if(nome != "")
        Window.document.writeln("<title>" + nome + "</title>");
    else
  	 Window.document.writeln("<title>Ambienti s.n.c. Bologna - Centro Cucine ALNO</title>");
    Window.document.writeln("<link rel='stylesheet' type='text/css' href='stile.css'>");
    Window.document.writeln("</head>");
    
    if(nome != ""){
        Window.document.writeln("<body>");
  	 Window.document.writeln("<p align='center' class='title'>" + nome + "</p>");
    }
    else
  	 Window.document.writeln("<body leftmargin='0' topmargin='0'>");

    Window.document.writeln("<p align='center'><a href='javascript:this.close();' title='Clicca per chiudere'><img src='" + file + "' border='0'></a></p>");
    Window.document.writeln("</body>");
    Window.document.writeln("</html>");
    Window.document.close();
}


function viewEspo(id) {
    window.open("esposizione.php?ID=" + id, "", "width=750 height=415");
}


function change(file) {
    this.document.anteprima.src = file;
}

