function caricaFoto(img){
	w=200;
	h=120;
	var left = Math.floor((screen.width-w)/2);
	var top = Math.floor((screen.height-h)/2);
	var setting="location=no,menubar=no,resizable=no,scrollbars=yes,toolbar=no,width="+w+",height="+h+",top="+top+",left="+left;
	newWin=window.open("openimg.php?img="+img, 'popUp', setting);
	newWin.focus();
}

function gId(id){
	return document.getElementById(id);
}


function apri(URL,width,height) {

var left = (screen.width/2) - width/2;
var top = (screen.height/2) - height/2;
var styleStr = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;

window.open(URL,"", styleStr);
}



function caricaFotoPhotoGallery(url) {
	var left= 0;
	var top= 0;	
	wid = window.open(url, "popupimmagine", 'toolbar=no,directories=no,resizable=NO,menubar=no,scrollbars=NO,width=100,height=100,top='+top+',left='+left);
	wid.focus();
}







