function manageactiontreeview(id){
	d = document;
	
	document.getElementById('frameproperty').src = '/administration/mngtreeview/propertytreeview.php?id_node=' + id +''
	document.getElementById('frameaction').src = '/administration/mngtreeview/actiontreeview.php?id_node=' + id +'';
}

function manageactiontreeviewNews(id){
	d = document;
	if (id!='ROOT')
		document.getElementById('frameproperty').src = '/administration/mngnews/propertytreeview.php?id_node=' + id +'';
	document.getElementById('frameaction').src = '/administration/mngnews/actiontreeview.php?id_node=' + id +'';
}

function manageactiontreeviewAgenda(id){
	d = document;
	if (id!='ROOT')
		document.getElementById('frameproperty').src = '/administration/mngagenda/propertytreeview.php?id_node=' + id +'';
	document.getElementById('frameaction').src = '/administration/mngagenda/actiontreeview.php?id_node=' + id +'';
}

function askPublish()
{
	var d = document.form1;
	var fldAction = document.getElementById('action');
	fldAction.value = 'ASK_PUBLISH';
	d.submit();
}

function NoPublish()
{
	if (confirm('Voulez-vous vraiment refuser la publication ?'))
	{
		var d = document.form1;
		var fldAction = document.getElementById('action');
		fldAction.value = 'NO_PUBLISH';
		d.submit();
	}
}

function Publish()
{
	if (confirm('Voulez-vous vraiment publier ?'))
	{
		var d = document.form1;
		var fldAction = document.getElementById('action');
		fldAction.value = 'PUBLISH';
		d.submit();
	}
}