function apriFin(url, name, width, height){
		var settings="'left=150,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+"'";
		var MyNewWindow=window.open(url,name,settings);
}

function apriFinFocus(url, name, width, height){
		var settings="'left=150,top=10,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+"'";
		var MyNewWindow=window.open(url,name,settings);
		MyNewWindow.focus();
}

function apriCalendario(b,c){
 apriFinFocus('../admin/popup_date.php?cmpCod='+b+'&flagOre='+c,'popup',310,270);
}

function apriPopupQuery(b,c){
 apriFinFocus('popup_query.php?cmpCod='+b+'&codSito='+c,'popup',500,300);
}

