﻿function Null_To_Empty(string) {
    if (string == null) {
        return "";
    }
    else {
        return string;
    }
}
