// <form name="searchform" ACTION="http://search.ebay.com/search/search.dll" METHOD="GET" onsubmit="setPopOutSwitch(false);return isItemNumber(this);">
// <input TYPE="hidden" NAME="cgiurl" VALUE="http://cgi.ebay.com/ws/">
// <input type="hidden" name="krd" value="1">
// <input type="hidden" name="from" value="R8">
// <input type=hidden name="MfcISAPICommand" value="GetResult">
// <input type=hidden name=ht value=1>
// <input type=hidden name="SortProperty" value="MetaEndSort">
// <input type=text name=query size=25 maxlength=300 value="" hspace="0">

  function submitToEbay() {
    top.theTarget.location = "http://search.ebay.com/search/search.dll?" +
      "cgiurl=http://cgi.ebay.com/ws/&krd=1&from=R8&" +
      "MfcISAPICommand=GetResult&ht=1&SortProperty=MetaEndSort&query=" +
      document.forms["theVisible"].elements["input1"].value;
  }

//  var ebayButton = document.createElement("Input");
//  ebayButton.type = "button";
//  ebayButton.onclick = submitToEbay;
//  ebayButton.value = "EBAY";
//  document.getElementById("theForm").appendChild(ebayButton);

  document.write('<INPUT TYPE="button" onClick=submitToEbay() VALUE="EBAY">');
