function elenco(elenco) {
    w = 540;
	h = 450;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=0,scrollbars=0";
	nw = window.open (elenco, "Elenco", attributi);
	nw.opener = self;
}

function studio(foto) {
    w = 980;
	h = 680;
	attributi = "left=" + (screen.width-w)/2 + ",top=" + (screen.height-h)/2 + ",width=" + w + ",height=" + h + ",resizable=0,scrollbars=0,toolbar=0";
	nw = window.open (foto, "Studio", attributi);
	nw.opener = self;
}

