//check delete before continue
function deleteItem(forum) {
	var checkBox = document.getElementById("chkDelete")
	
		
		var choice = confirm("Are you sure you want to delete? You can set Live to No to prevent users from seeing this story. Click OK to delete and Cancel to cancel the delete.")
		if(choice==true) {
			return(true)
		}
		else {
			return(false)
		}
	}
	
//check delete before continue
function deleteItem2(forum) {
	var checkBox = document.getElementById("chkDelete")
	
		
		var choice = confirm("Are you sure you want to delete this post? Click OK to delete and Cancel to cancel the delete.")
		if(choice==true) {
			return(true)
		}
		else {
			return(false)
		}
	}
	
//check complete before continue
function Complete_Manager(forum) {
	var checkBox = document.getElementById("chkComplete")
	
		
		var choice = confirm("Are you sure you have completed your requirements for this function? You can click 'Cancel' to check your submission and you will not loose any data. If you are certain that you have completed your requirements then click 'OK'.")
		if(choice==true) {
			return(true)
		}
		else {
			return(false)
		}
	}