addNamespace("saSystemInformation");
saSystemInformation_class = Class.create();
saSystemInformation_class.prototype = (new AjaxPro.Request()).extend({
	GetTierTwoSystemInformation: function(ComputerID, callback) {
		return this.invoke("GetTierTwoSystemInformation", {"ComputerID":ComputerID}, callback);
	},
	GetTierThreeSystemInformation: function(ComputerID, sysType, callback) {
		return this.invoke("GetTierThreeSystemInformation", {"ComputerID":ComputerID, "sysType":sysType}, callback);
	},
	initialize: function() {
		this.url = "/Reports/ajaxpro/saSystemInformation,App_Web_sasysteminformation.aspx.dfa151d5.ashx";
	}
})
saSystemInformation = new saSystemInformation_class();

