	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?")) {
			$get('DNK').value = nk;
			document.LogForm.submit();
		}
	}						

	function verifyDelete(id) {
	    if(id == null)
	        return confirm("Are you sure you want to delete?");
	    else
	        return confirm("Are you sure you want to delete this " + id + "?");
	}

