

function openLargePhoto( idPhoto, width, height ) {

	if( ! width )
		width = 200;
	if( ! height )
		height = 200;
		
	//winPhoto = window.open('/getfile.php?GFILE_ID='+idPhoto, 'fwinPhoto', 'top=10,left=10,width='+(width+15)+',height='+(height+30)+',scrollbars=1,location=0,status=0');
	winPhoto = window.open('/popupImage.php?imgURL='+escape('getfile.php?GFILE_ID='+idPhoto), 'fwinPhoto', 'top=10,left=10,width='+(width+15)+',height='+(height+30)+',scrollbar=1,location=0,status=0,resizable=1');

}

