function ConfirmAccountDelete()
{
	var msg = 'Warning! You are about to delete this account. All transactions for this account will also be deleted. Are you sure you want to delete this account?';
	
	var returnVal = false;
	
	if (confirm(msg))
	{
		returnVal = true;
	}
	
	return returnVal;
}

function ConfirmTransactionDelete()
{
	var msg = 'Warning! You are about to delete this transaction. Are you sure you want to delete this transaction?';
	
	return confirm(msg);
}
