Skip to content
Reporting
Share
Explore

Reporting

Newsletter

Loading…

Display

Loading…

Management Summary

function GetUrlParameters(){
var arrItems = document.location.search.split('?')[1].split('&');
var obj = {};
for (i = 0; i < arrItems.length;i++){
var token = arrItems[i].split('=');
obj[token[0]] = token[1];
}
return obj;
}

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.