  function bidgen (itm,itmdesc) 
  {
  bidwindow = window.open("", "bidopen","toolbar=yes,top=30,left=30,resize=Yes,directories=no,menubar=no,scrollbars=Yes,width=700,height=600");
  bidwindow.document.writeln('<html>');
  bidwindow.document.writeln('<head>');
  bidwindow.document.writeln('<title>Bid Submission Form</title>');
  bidwindow.document.writeln('<script language="javascript">');
  bidwindow.document.writeln('function winopen(url)');
  bidwindow.document.writeln('{');
  bidwindow.document.writeln('newwin=window.open(url,"openwin","toolbar=no,resizable,top=80,left=80,directories=no,status=yes,menubar=no,scrollbars=yes,width=500,height=400");');
  bidwindow.document.writeln('newwin.focus();');
  bidwindow.document.writeln('}');
  bidwindow.document.writeln('</script>');
  bidwindow.document.writeln('</head>');
  bidwindow.document.writeln('<body>');
  bidwindow.document.writeln('<form method="post" action="processBid.php" name="emailform">');
  bidwindow.document.writeln('<table>');
  bidwindow.document.writeln('<tr>');
  bidwindow.document.writeln('<td ALIGN=RIGHT>Bidder Number:</td>');
  bidwindow.document.writeln('<td><input type="text" name="biddernum" size="60" maxlength="200"></td>');
  bidwindow.document.writeln('</tr>');
  bidwindow.document.writeln('<tr>');
  bidwindow.document.writeln('<td ALIGN=RIGHT>Last Name:</td>');
  bidwindow.document.writeln('<td><input type="text" name="lname" size="60" maxlength="200"></td>');
  bidwindow.document.writeln('</tr>');
  bidwindow.document.writeln('<p>');
  bidwindow.document.writeln('<tr><td ALIGN=RIGHT>Item Number:</td><td><input type="text" name="itemnum" size="60" maxlength="200" value=' + itm +' readonly></td></tr>');  
  bidwindow.document.writeln('<p>');
  bidwindow.document.writeln("<tr><td ALIGN=RIGHT>Item:</td><td><input type='text' name='shdescrip' size='60' maxlength='200' value=" + itmdesc +" readonly></td></tr>");  
  bidwindow.document.writeln('<p>');
  bidwindow.document.writeln('<tr><td ALIGN=RIGHT>Amount of Your Bid ($):</td><td><input type="text" name="newbid" size="60" maxlength="200"></td></tr>');  
  bidwindow.document.writeln('<p>');
  bidwindow.document.writeln('<tr><td ALIGN=RIGHT>Optional <a href="javascript:winopen(\'proxydefn.html\');">Secret Maximum Bid</a> ($):</td><td><input type="text" name="proxybid" size="60" maxlength="200"></td></tr>');  
  bidwindow.document.writeln('<p>');
  bidwindow.document.writeln('<tr><td></td><td ALIGN=CENTER COLSPAN="1"><input type="submit" name="submit" value="Submit"></td></tr>');  
  bidwindow.document.writeln('</table>');  
  bidwindow.document.writeln('<center>');  
  bidwindow.document.writeln('<p><font color="#006600"><font size=+2>Please fill in each field of this bid form, <br>and click the "submit" button.</font></font>');  
  bidwindow.document.writeln('<p><b><i><font color="#000099"><font size=+3>Thank you for your support!</font></font></i></b></center>');
  bidwindow.document.writeln('</center>');
  bidwindow.document.writeln('</form>');
  bidwindow.document.writeln('</body>');
  bidwindow.document.writeln('</html>');
  bidwindow.document.close;
  bidwindow.focus();
  }
