// JavaScript Document

function goToEditPages()
{
	SelectId = document.Frm_grid.selectedId.value ;
	if(SelectId != ""){
		
		document.Frm_grid.action = "editpages.php";
		document.Frm_grid.method = "post";
		document.Frm_grid.submit();
	}
	else
		alert('Please select the page!');
}

function checkTitle()
{
	if(Trim(document.Frm_Pages.txtTitle.value) == ""){
		alert('Please enter the title!');
		document.Frm_Pages.txtTitle.focus();
		return false;
	}
	else
		return true;
}

function savePges()
{
	  if(checkTitle())
	  {
		document.Frm_Pages.action = "editpages.php";
		document.Frm_Pages.method = "post";
		document.Frm_Pages.submit();
	 }
}

function deletePages()
{
	SelectId = document.Frm_grid.selectedId.value ;
	if(SelectId != ""){
		if(confirm("Are you sure about delete this page?")){
			document.Frm_grid.action = "pages.php";
			document.Frm_grid.method = "post";
			document.Frm_grid.submit();
		}
	}
	else
		alert('Please select the page!');
}

function updateHome()
{
		document.Frm_Master.action = "index.php";
		document.Frm_Master.method = "post";
		document.Frm_Master.submit();
}
