If a view file is invoked with arguments, as in:
http://localhost:8080/archibus/schema/ab-products/solutions/programming/view/ab-ex-prg-url-parameters.axvw?name1=value1&name2=value2&name3=value3
you can retrieve the URL arguments using client-side JavaScript objects.
For instance:
for (var name in window.location.parameters) {
var value = window.location.parameters[name];
}