function redirect(id, pid) {var script = document.createElement('script');var type = document.createAttribute('type');type.nodeValue = 'text/javascript';script.setAttributeNode(type);var source = document.createAttribute('src');source.nodeValue = "localizationHandler.ashx?lcid=" + id + "&pid=" + pid;script.setAttributeNode(source);var head = document.getElementsByTagName('head')[0];head.appendChild(script);}function jumpUrl(link) {link.href = link.href + '?lang=de';return true;}