// JavaScript Document
function showFullImage(image, dirpath)
{
/*	larghezza = 640;
	altezza = 480;
	parametri_finestra = "width=" + larghezza + ",height=" + altezza + ",scrollbars=no,menubar=no,resizable=no";
	//faccio in modo che si apra sempre una sola pop-up
	
	try 
	{
	openwin_obj.location.href="popup-image.php?image="+image;
	
	}
	catch(exeption) 
	{
			openwin_obj = window.open("","",parametri_finestra);
			openwin_obj.location.href="popup-image.php?image="+image;
	}
		
	//openwin_obj.location.href="details.php?id_prod="+pag;
	openwin_obj.moveTo(50,50);
	openwin_obj.focus();
	openwin_obj.creator=self*/


  	window.open(dirpath+'images/popup-image.php?image='+image,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=800,height=600,screenX=150,screenY=150,top=150,left=150');
}

