var newWindow;
var immagine;
	
function makeNewWindow(nome,larg,alt) {
    if (!newWindow || newWindow.closed) {
	    immagine=nome;
	    larghezza = larg + 15;
	    altezza = alt + 30;
	    prop = "width="+larghezza+",height="+altezza+",toolbar=no,directories=no,menubar=no,resizable=no";
	    newWindow = window.open("","sub",prop);
	    newWindow.resizeTo(larg+25, alt+65);
	    setTimeout("writeToWindow()", 25);
	} else if (newWindow.focus && nome==immagine) {
		newWindow.focus();
	} else if (newWindow.focus && nome!=immagine) {
		immagine=nome;
		newWindow.resizeTo(larg+25, alt+65);
		setTimeout("writeToWindow()", 25);
	}
}
function writeToWindow() {
    var newContent = "";
    newContent +="<html><head><title>Immagine Ingrandita</title></head>";
    newContent +="<body BGCOLOR=\"#ADDD6F\"><img src=\"Images/"+immagine+"\">";
    newContent +="</body></html>";
    newWindow.document.write(newContent);
    newWindow.document.close();
    newWindow.focus();
}
