//link esterni
function popUpLink(urlPop) {
	l = (screen.width-440)/2;
	t = (screen.height-380)/2;
   newWin = window.open(urlPop,"nuovafinestr");
}


//foto
function popUpPhoto(urlPop , width , height ) {
	l = (screen.width-440)/2;
	t = (screen.height-380)/2;
	scrl="no";
       	newWin = window.open(urlPop,"nuovafinestra", "width="+ width + ", height=" + height + " ,  left=" + l + ", top=" + t + ", scrollbars="+scrl);
}


