Get In Touch

function fixedEncodeURIComponent(string) { return encodeURIComponent(string).replace(/[!’()*]/g, function (character) { return "%" + character.charCodeAt(0).toString(16); }); }

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 1){var q = a[1].split(’,’);if (q.length > id){p = q[id];}}}} if (p == undefined){if (type == "int"){return 0;}if (type == "str"){return "";}}if (type == "int"){return parseInt(p);}return p+"";}

Share: