Let's Dig in to this script.

Line 1: This creates a new function which we call ajaxManager.

Line 2: we create a variable called args that points to all the arguments that the function will contain. We do this to cut down on file size rather that typing out ajaxManager.arguments on each occasion we want to make an argument. In case you do not know what a JavaScript argument is used for consider the following:

function alertMe(message){
alert(message);
}

In the alertMe function the argument employed is "message" and is contained within the