function openImgPopUp(imgPath,imgWidth,imgHeight)
{
	var formObj = document.getElementById('frmImgPopUp');
	formObj.imgPath.value = imgPath;
	formObj.imgWidth.value = imgWidth;
	formObj.imgHeight.value = imgHeight;
	var popUpWidth = imgWidth + 50;
	var popUpHeight = imgHeight + 80;
	myPopUp(popUpWidth,popUpHeight);
}

/* 
// apertura senza focus
function myPopUp(width, height)
{
	var url = "../utility/imgPopUp.htm";
	eval("popup = window.open('" + url + "', 'imgPopUp', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ",left = 100,top = 100');");
}
*/

// apertura con focus


function myPopUp(width, height)
{
	var url = "../utility/imgPopUp.htm";
	var imgPopUp = eval("popup = window.open('" + url + "', 'imgPopUp', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + width + ",height=" + height + ",left = 100,top = 100');");
	imgPopUp.resizeTo(width, height + 50);
	imgPopUp.focus();
}
