// ------------------------------------------------------------
//	SHOWIMG.JS
// ------------------------------------------------------------
//	Richiama il modulo di visualizzazione immagini
//	in una finestra popup
//
//	Data: 03-11-2005
// ------------------------------------------------------------


function OpenPopupWindow(modulePath, objRef, wName, imgWidth, imgHeight)
{
	return (window.open(modulePath + "?" + objRef, wName, 
				"toolbar=0, status=0, width=" + imgWidth + ", height=" + imgHeight)) ;
}