function Proxy() {
	;
}

Proxy.create = function (scope, func) {
  // Create an Array to hold the arguments
  //var args = new Array();
  //args.push(params);
  // When the proxy function is called, use the apply( ) method to call
  // the method that is supposed to get called by proxy. The apply( )
  // method allows you to specify a different scope (scope) and pass
  // the parameters as an array.
  var fProxy = function() {
    func.apply(scope, arguments);
  };
  return fProxy;
}