function billingDelete()
{
	var deleteRecord = false;
	
	deleteRecord = confirm("Are you sure you want to delete this Billing record? This action CAN NOT be undone. Click \"OK\" to proceed.");
	
	if (deleteRecord == true)
	{
		return true;
	}
	
	else if (deleteRecord == false)
	{
		return false;
		
	}
}

function paymentDelete()
{
	var deleteRecord = false;
	
	deleteRecord = confirm("Are you sure you want to delete this Payment record? This action CAN NOT be undone. Click \"OK\" to proceed.");
	
	if (deleteRecord == true)
	{
		return true;
	}
	
	else if (deleteRecord == false)
	{
		return false;
		
	}
}

function clientDelete()
{
	var deleteClient = false;
	
	deleteClient = confirm("Are you sure you want to delete this Client? All client records, including payment, billing, and client activity records will be permanently deleted. This action CAN NOT be undone. Click \"OK\" to proceed.");
	
	if (deleteClient == true)
	{
		return true;
	}
	
	else if (deleteClient == false)
	{
		return false;
		
	}
	
}
