function sendRPCDone (frameElement, keyword, keyword_list, result_list) {
  var i = 0;
  var searchurl = 'http://www.google.com/search?complete=1&hl=en&lr=&c2coff=1&q=';
  document.writeln('<div class="GoogleSuggestTitle">Google Suggest</div>');
  document.writeln('<div class="GoogleSuggestKeyword">Keyword:<b>' + keyword + '</b></div>');
  document.writeln('<table class="GoogleSuggestBody">');
  for (i = 0;i < keyword_list.length;i++) {
    document.writeln('<tr>');
    document.writeln('<td><div class="GoogleSuggestKeywordList"><a href="' + searchurl + escape(keyword_list[i]) + '">' + keyword_list[i] + '</a></div></td>');
    document.writeln('<td><div class="GoogleSuggestResultList">' + result_list[i] + '</div></td>');
    document.writeln('</tr>');
  }
  document.writeln('</table>');
}
function RequestGoogleSuggest (keyword) {
  document.writeln('<script src="http://www.google.com/complete/search?hl=en&js=true&qu=' + escape(keyword) + '"></script>');
}
