// JavaScript Document

function confirmClientDelete(){
	var msg = "Are you sure you want to PERMANENTLY delete this Client? \nThis will delete all client information. \n\nThis action cannot be undone.";
	var agree=confirm(msg);
	if (agree) return true ;
	else return false ;
}


