XMLRPC is Undefined?

I have this code in the onLoad instance of a webform and am getting the error “XMLRPC is undefined” when I try to load the page via the web. I do not know JavaScript, so I don’t know what to include to set that up. Any ideas?

var appName=“Demo ADISMembership”;

var userID=“”;

var password=“”;

var inputArray = new Array(3);

inputArray[0]=userID;

inputArray[1]=password;

inputArray[2]=appName;

var balancedUrl=XMLRPC.call(“https://vwtest.oas.psu.edu/isapi/gi.dll/rpc2","getBalancedURL”,inputParams);

document.write(balancedUrl);

Subject: XMLRPC is Undefined?

the javascript variable XMLRPC in your code is not defined. You might need to add some lines like this:

var xmlrpc = new Atomic.util.XMLRPC( {

    url: "xmlrpc.php",

    method: "blogger.getUsersBlogs"

} );

Refer to:

http://atomic.jbrisbin.com/node/2

And I am not familiar with XML-RPC.

Regards,

Byju Joy