/*
 * funzione che riceve il nome di un'immagine e le sue dimensioni
 * apre un popup dimensionato, e la visualizza
 */
function view(file,width,height){
    window.open("news_image.php?file="+file,"","width="+width+",height="+height+",toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0");
}

/*
 * funzione che modifica l'immagine nel dettaglio
 */
function change(file){
    this.document.anteprima.src = file;
}

