This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
function getSearchParameters() { | |
var prmstr = window.location.search.substr(1); | |
return prmstr != null && prmstr != "" ? transformToAssocArray(prmstr) : {}; | |
} | |
function transformToAssocArray( prmstr ) { | |
var params = {}; | |
var prmarr = prmstr.split("&"); | |
for ( var i = 0; i < prmarr.length; i++) { |