
function PopUpCatalogo(nDettaglio)
{
	var t, l, h, w, nScroll;
	var xPopup;

	h = 450;
	w = 420;
	nScroll=1;

	t = (screen.height - h) / 2;
	l = (screen.width - w) / 2;

	xPopup = window.open ("../Catalogo/Dettaglio.asp?Pos=" + nDettaglio, "Menu", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + nScroll + ",resizable=yes,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)
	xPopup.focus();
}
