﻿
function isNull(object) {
    return (typeof(object) == "undefined" || object == null);
}

function isNullOrEmpty(object) {
    return (typeof(object) == "undefined" || object == null || object == "");
}
