function fncInsSpaceAfterComma(s) {

    var reg = /,([^ ][^ ])/g;

    return s.replace(reg, ', $1');

} // function
