function js_fct_read_content(newsid,lg) {
	w = 560;
	h = 400;
	var path = '../newsDB/index.php?fuseaction=dsp_news_content&newsid=' + newsid + '&lg='+lg;
	var win = window.open(path, '', 'toolbars=no,scrollbars=yes,width=' + w + ',height=' + h + ',resizable=yes');
	win.focus();
	var posX = (window.screen.width/2) - (w/2);
	var posY = (window.screen.height/2) - (h/2);
	win.moveTo(posX,posY);
}

function js_fct_confirm_delete(newsid) {

	if (confirm("Etes-vous sûr de vouloir supprimer cette nouvelle définitivement ?")) {
		document.location = "index.php?fuseaction=act_delete_news&newsid=" + newsid;
	}

}