function redirectURL(selIndex) {
         var elem = (document.getElementById) ? document.getElementById("q_select") : ((document.all) ? document.all["q_select"] : null);
         if (elem) {
            if (elem.options[selIndex].value!='none') {
               window.open(elem.options[selIndex].value,'_top');
            }
         }
}
