function fixedEncodeURIComponent(string) { return encodeURIComponent(string).replace(/[!’()*]/g, function (character) { return "%" + character.charCodeAt(0).toString(16); }); }
function get_param(store, type, id){ var o = document.cookie.split(’;’);var p = undefined;for (var i=0; i





