function ajax(param, file, method) {
	var request = new Request.JSON({url: file, method: method,
		onRequest: function(instance) {

		},
		onSuccess: function(xml, txt) {
			
		},
		onFailure: function() {
			
		},
		onComplete: function(json) {
			
		}
	}).send(param);
}
