function pageedit()
{
	document.peform.submit();
}

function pagedel()
{
	if(confirm("!!!Warning, this action will delete all pages under this page.\r\nDo you want to delete this page?"))
	{
		document.pdform.submit();
	}
}

function pageadd(i,n,u)
{
	document.paform.parent_id.value = i;
	document.paform.group_name.value = n;
	document.paform.page_url.value = u;
	document.paform.submit();
}

function subpageadd(i,u)
{
	document.spaform.parent_id.value = i;
	document.spaform.page_url.value = u;
	document.spaform.submit();
}
