////////////////////////////////////////////////////////////////////////////////
// BEGIN
//

	function savePage()
	{
		var msg = "Are you sure you want to make this the active site content?";
		
		if( confirm( msg ) )
		{
			document.getElementById( "formAction" ).value = "save";
			document.forms.form_preview.submit();
		}
	}
	
	function removePage()
	{
		var msg = "Are you sure you want to delete this page?";
		
		if( confirm( msg ) )
		{
			document.getElementById( "formAction" ).value = "remove";
			document.forms.form_preview.submit();
		}
	}

//
// END
////////////////////////////////////////////////////////////////////////////////
