// <form name=mapForm2 action="http://us.rd.yahoo.com/maps/mapresults/submitnewloc/*-http://maps.yahoo.com/maps_result" method=get class=body>
// <select name="newFL" onchange="setFL(document.mapForm2.newFL)">
//   <option value="Use Address Below" selected> ...
// <input maxlength=40 size=20 name="addr" value="">
// <input maxlength=40 size=20 name="csz" value="Pasadena, CA 91101">
// <input type="hidden" name="resize" value="s">
// <input type=hidden name=".intl" value="us">
// <select name="country"><option value="us" selected > ...
// 

  function submitToMap() {
    top.theTarget.location = "http://maps.google.com/maps?q=" +
      document.forms["theVisible"].elements["input1"].value;
          
  }

//  var mapButton = document.createElement("Input");
//  mapButton.type = "button";
//  mapButton.onclick = submitToMap;
//  mapButton.value = "Map";
//  document.getElementById("theForm").appendChild(mapButton);

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