<!--
		function confirmDelete() {
			if (confirm("Are you sure you wish to delete this?"))
				return true ;
			else {
				return false ;
			}
		}
		function confirmUndo() {
			if (confirm("Are you sure you wish to undo all changes made?"))
				return true ;
			else {
				return false ;
			}
		}
		function confirmEmailSend() {
			if (confirm("Are you sure you wish to send the email?"))
				return true ;
			else {
				return false ;
			}
		}//-->