// JavaScript Document

function funConfirm() {
	if (confirm("Are you sure to permanentely delete this from the system?")) {
		return true;
	}
		return false;
}
	