  var thiselement = document.getElementById("adso_output");
  var thistext    = document.getElementById("adso_input");//.value; <-- causing some problems


  function pinyin_requested() {
    thistext = document.getElementById("adso_input").value;
    document.getElementById("adso_output").value = 'loading...';

    // Save our Stuff
       // Save Repositioning
       try {
         var head = document.getElementsByTagName("head")[0];
         script = document.createElement('script');
         script.id =  'editDisplayOrder';
         script.type = 'text/javascript';
         script.src = "http://adsotrans.com/popup/pinyin.php?text="+thistext;
         head.appendChild(script);
       } catch(err) { alert("Error: " + err.message); }
  }


  function update_annotation(obj,annotation) {
//    obj.innerHTML = annotation; <-- original line used on website. doesn't work with dashboard widget
      document.getElementById("adso_output").innerHTML = annotation; // changed to work on the widget
  }

  document.getElementById("adso_input");//.select(); <-- causing some problems
  
  getResultsJing()
