﻿
var IsNull = function (object) {
	if (object == null) return true;
	if (object == "undefined") return true;

	return false;
}
