function showWin()
      {
      window.name='origin';
      var w = window.open('','order',
          'width=500, height=400,resizable,scrollbars,status');
      w.document.clear();
      w.focus();
      return true;
      }
    function popWin(pic)
      {
      var w = window.open('', 'popit', 'width=420,height=500');
      var d = w.document;
      d.write('<html><head><title>Teddy Picture</title></head><body bgcolor="white" leftmargin="6" topmargin="6">');
      d.write('<center><table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center">');
      d.write('<img src="../js/largeimages/%27%20+%20pic%20+%20%27">');
      d.write('</td></tr><tr><td align="center"><form>');
      d.write('<input type="button" value="Close this window" onclick="window.close();">');
      d.write('</form></td></tr></table></center></body></html>');
      d.close();
      w.focus();
      return false;
      }
