// JavaScript Document

function visualizza(autores, titolos, immagines, descriziones) {
		var stringa, finestra;
		stringa='opere.htm?immagine='+immagines+'&autore='+autores+'&titolo='+titolos+'&descrizione='+descriziones;
//		stringa='opere.htm?autore='+autores+'&titolo='+titolos+'&descrizione='+descriziones+'&immagine='+immagines;
		if (screen.height < 700) {
			setTimeout(finestra=window.open(stringa, 'DynamicPage','menubar=no,height=600,width=900,left=25,top=25,resizable=no'),150);
		}
		else {
			setTimeout(finestra=window.open(stringa, 'DynamicPage','menubar=no,height=600,width=900,left=50,top=50,resizable=no'),150);
		}
//		setTimeout(write_code(autores, titolos, immagines, descriziones),150);
	if (!finestra) {
		alert("Pop Up disabilitati. Impossibile visualizzare le immagini<br />Pop Up disabled. Impossible to show the images");
	}
}
