function quicklinks() { var theselect = document.getElementById("qlselect"); var theurl = theselect.options[theselect.selectedIndex].value; if(theurl.indexOf("%") != -1) theurl = decode(theurl); window.location = theurl; } function decode(starturl) { var endurl = ""; for(var i = 0; i < starturl.length; i++) { if(starturl.charAt(i) != "%") endurl += starturl.charAt(i); else endurl += unescape(starturl.charAt(i++)+starturl.charAt(i++)+starturl.charAt(i)); } return endurl; }