// ========================================================
// Mostra Foto Lavori Ingrandita
// ========================================================
function PopUpLavori(nPos)
{
	var t, l, h, w;
	var cScroll, cResizable;
	var xPopup;

	h = 400;
	w = 625;

	cScroll = "yes";		// yes | no
	cResizable = "yes";		// yes | no

	t = (screen.height - h) / 2;
	l = (screen.width - w) / 2;

	xPopup = window.open ("ShowLavori.asp?Pos=" + nPos, "Menu", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + cScroll + ",resizable=" + cResizable + ",copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)
	xPopup.focus();
}