// JavaScript Document
function confirmRemove() {
	var answer = confirm("Are you sure you want to remove the selected item? Click OK to continue, or Cancel to go back.")
	return answer;
}