function ConfirmRebuild() {
				if(confirm('REBUILD THE WEBSITE URL STRUCTURE\n\nRebuilding the URL structure may take some time if you have a lot of items on the website, but it is a necessary step in order to prevent dead links when navigating the content.\n\nPress OK to proceed with the rebuild, or Cancel to do it later.')) {
					return true;
				}else{
					return false;
				}
			}

			function ConfirmDelete() {
				if(confirm('Deleting this object is not reversible!\n\nPress OK if you REALLY want to delete it, or Cancel to stop.')) {
					return true;
				}else{
					return false;
				}
			}

			function ConfirmLogOff() {
				if (confirm("This will log you out of the Content Management System.")) 
				{
					document.location.href=('Admin/LogOff');
					return true;
				}else{
					return false;
				}
			}