// JavaScript Document
function addNews() {
	id = 'newNews';
	
	var callback = function(id, response) {
		openBox(id, response, 'inputBox');
	}
	
	var uri = "Modules/Content.php?contentType=1";
	ajaxGet(id, uri, callback);	
}
function editNews(id_news) {
	id = 'editNews'+id_news;
	
	var callback = function(id, response) {
		openBox(id, response, 'inputBox');
	}
	
	var uri = "Modules/Content.php?contentType=1&contentId="+id_news;
	ajaxGet(id, uri, callback);	
}
function dropNews(id_news) {
	if(confirm('Eliminare definitivamente la notizie e i commenti?')) {
		var uri = "news.php?dropContent=1&contentId="+id_news;
		window.location.href = uri;
	}
}