var apertura = 0;function ingrandisci(q,nw,nh,tw,th) {	var questa = document.getElementById(q);	if (apertura == 0) {		questa.style.width = nw+"px";		questa.style.height = nh+"px";		apertura = q;	} else if (apertura != 0 && apertura != q) {		aperta = document.getElementById(apertura);		aperta.style.width = "";		aperta.style.height = th+"px";		questa.style.width = nw+"px";		questa.style.height = nh+"px";		apertura = q;	} else if (apertura == q) {		questa.style.width = tw+"px";		questa.style.height = th+"px";		apertura = 0;	}}