var MARS = {
	isEmpty : function(value){
		if(value === null || value === void 0 || value.length === 0 || value === ""){
			return true;
		}
		return false;
	}
}

