function selectItem(li) {}
function formatItem(row) { return row; }
$(document).ready(function(){
	$("#tags").autocomplete('ajax/autocomplete_tags_archivio.php', { minChars:1, matchSubset:3, matchContains:3, cacheLength:10, onItemSelect:selectItem, formatItem:formatItem, selectOnly:1, mode:"single",multipleSeparator:"|" });
});

function mod_opz(opz, articolo_id){
	http.open('get', '/ajax/mod_opz.php?articolo_id='+articolo_id+'&opz_id='+opz+'&view=hp');
	http.onreadystatechange = handleResponse;
	http.send(null);
}
