	function changeBox(NewValue) {
		document.LogForm.hidShowDetail.value = NewValue;
		document.LogForm.submit();
	}
	function DeleteTheWorkoutNote(nk){
		if(confirm("Are you sure you want to delete this comment?")) {
			document.LogForm.DNK.value = nk;
			document.LogForm.submit();
		}
	}						

	function verifyDelete() {
		return confirm("Are you sure you want to delete this comment?");
	}
