// JavaScript Document
//apertura popup view image
var WView;
function showImg(modalita,path,name,title){	
	//alert(path + " -> " + name);
	if (!WView){
		WView=window.open('view_photo.php?mod='+modalita+'&path='+path +'&name='+ name + '&title='+ title,'WView','target=_blank,height=800,width=1024,resizable=no,scrollbars=yes');
	}
	WView.focus();
}
function CloseWinView(){
	unsetWinView();
}
function unsetWinView(){
	WView=null;	
}
