Form doesn't submit [was: Please Help!]

I am new to web development and am obviously just not seeing what I'm missing. I re-built our company's website in January (mostly because of over-charging by our webmaster). It is an exceptionally basic .html sight but it works for us. I have learned a great deal about coding the basics and have been slowly going back through my orginal pages and cleaning up the code. While I was doing that I noticed that one of the pages our customers use are from our old website. I am trying to create a form that I will be able to manipulate that has the look and feel of our current site. Maybe you can take a look and explain to me why when I fill in all the required fields and hit the "submit" button nothing happens.
http://http://langsauction.com/Staging/bid_form_test.html
Our server has a cgi folder that has not been touched or moved so I am guessing I just haven't figured out where to add the code I need for this to work.
I have checked the code from our old page:
http://https://langs11.securesites.net/bids/index.php/
Other than it being a .php I can't see what I missed.....
When the information is submitted from the "old" page it is stored on our server and I receive an email notification, I click the link in my email and am directed to a printable page with all of our customer's information. I would like the same thing to happen with my new page.
I really appreciate any help you can give me!
Christina
Subject line edited by moderator to indicate nature of problem

You have been huge help already....I am taking your advise and walking away for this evening.....if you could look into this I would be eternally greatful!!
<?php
* Things to NOTE
* Is it ok to have month values as numbers in this format 01, 02, 03, ... 11... etc..
require_once 'https://langsauction.com/bids/Crypt_Blowfish-1.0.1/Blowfish.php';
include('https://langsauction.com/bids/functions.php');
include('https://langsauction.com/bids/db.php');
$b = new Crypt_Blowfish('5az1bc1dDa1cv1TVa1wQa12xXx');
# for new crypt method
$key = "5az1bc1dDa1cv1TVa1wQa12xXx";
$error_fields = array();
$errors = array();
# passed to function month_display and will print out relevant values
$***_month = array("01" => "January", "02" => "February", "03" => "March", "04" => "April", "05" => "May", "06" => "June", "07" => "July", "08" => "August", "09" => "September", "10" => "October", "11" => "November", "12" => "December");
$***_fields = array("last_name" => "Last Name", "first_name" => "First Name", "address1" => "Address 1", "city" => "City", "state" => "State / Province", "zip" => "Zip / Postal Code", "county" => "County", "country" => "Country", "phone" => "Telephone", "email" => "Email", "cc_type" => "Credit Card Type", "cc_name" => "Names As It Appears On Card");
# keeps track of which fields had errors so
# it's html row can be highlighted
$error_fields = array();
* Credit Card Validation Solution, PHP Edition,
* Usage Example.
* @package    CreditCardValidationSolution
* @author     Daniel Convissor <[email protected]>
* @copyright  The Analysis and Solutions Company, 2002-2003
* @version    $Name: rel-5-12 $ $Id: ccvs_example.php,v 1.15 2003/08/06 05:51:57 danielc Exp $
* @link       http://www.ccvs.info/
* Require the main file.
require('../Documents/Langsauction/www/langsauction.com/bids/ccvs.inc.php');
$Form = new CreditCardValidationSolution;
* Example of to encrypt and decrypt
$encrypted = $b->encrypt('test');
$decrypted = $b->decrypt($encrypted);
echo " encr - $encrypted - decryp $decrypted";
#echoÊ"Encrypted:Ê" .Êbin2hex($encrypted)Ê.Ê"\n";
# existing code
if (isset($_POST['submit'])) {
    dbConnect('langsa');
* Need to Still
* run all fields through POST VARS
* and sanitize data
* use reg match from metrochai validation
# check user has checked Conditions of Sale
if($_POST['agree'] != 'yes') {
    array_push($errors, '>>Please read and accept the Conditions of Sale by selecting the checkbox');
foreach ($***_fields as $field => $field_name) {
    if($_POST[$field] == '') {
      array_push($error_fields, $field);
      array_push($errors, '>>The "'. $field_name . '" Field is empty. Please enter information for that field');
* Check that if a user enters a value in the Lot No. field, that all other fields in that row also have values
for($x = 1; $x < 16; $x++) {
     if( $_POST['lot' . $x] != '' && ( $_POST['lot_desc' . $x] == '' ||  $_POST['lot_max' . $x] == '' ||  $_POST['lot_max_bid' . $x] == '' ) ) {
      $lot = 'lot' . $x;
      $lot_name = 'Lot No. ' . $_POST['lot' . $x];
      array_push($error_fields, $lot );
      array_push($errors, '>>Please fill in the additional values for  "'. $lot_name . '" in STEP 3');
     * Put the names of the card types you accept in here.
     * To handle all card types, skip this step and put ''
     * in the Accepted argument.
    $Accepted = '';
    $Month = $_POST['exp_dat_mon'];
    $Year  = $_POST['exp_dat_yea'];
    # adding trim to remove any spaces at beginnning or end
    # in order to keep live server from breaking on mysql syntax
    $_POST['cc_num'] = trim($_POST['cc_num']);
# check if Credit Card Number is empty
if (empty($_POST['cc_num']) ) {
            # if CC Num is blank along with other relevant fields
            $Form->CCVSNumber = '4002417016240182';
            $Month = '';
            $Year  = '';
            array_push($errors, '>>The "Credit Card Number" Field Is Blank. Please enter information for that field');
# if Credit Card Number is not empty then check integrity of numbers   
elseif ( !$Form->validateCreditCard($_POST['cc_num'], 'en', $Accepted, 'Y', $Month, $Year) ) {
         array_push($errors, $Form->CCVSError);
         array_push($error_fields, 'cc_num');                
$count_errors = count($errors);
if($count_errors == 0) {
# form appears to be good so process data
# encrypt credit card info
# PEAR Blowfish Object Call
#$cc_num = $b->encrypt($_POST['cc_num']);
$cc_num = encrypt($_POST['cc_num'], $key); //encrypts the data using the key
//echo "$encrypted<hr>";
#sanitize data
    $email = strip_invalid_chars($_POST[email], 'email');
     $last_name = strip_invalid_chars($_POST[last_name]);
     $first_name = strip_invalid_chars($_POST[first_name]);
     $address1 = strip_invalid_chars($_POST[address1]);
     $address2 = strip_invalid_chars($_POST[address2]);
    $city = strip_invalid_chars($_POST[city]);
    $state = strip_invalid_chars($_POST[state]);
    $zip = strip_invalid_chars($_POST[zip]);
    $county = strip_invalid_chars($_POST[county]);
    $country = strip_invalid_chars($_POST[country]);
    $phone = strip_invalid_chars($_POST[phone], 'insecure');
    $cc_type = strip_invalid_chars($_POST[cc_type]);
    $cc_name = strip_invalid_chars($_POST[cc_name]);
    $exp_dat_yea = strip_invalid_chars($_POST[exp_dat_yea]); 
    $exp_dat_mon = strip_invalid_chars($_POST[exp_dat_mon]);
    $sql = "INSERT INTO cc_form SET
              last_name= '$last_name',
              first_name = '$first_name',
              address1 = '$address1',
              address2 = '$address2',
              city = '$city',
              state = '$state',
              zip = '$zip',
              county = '$county',
              country = '$country',
               phone = '$phone',
              email = '$email',
              cc_type = '$cc_type',
              cc_num = '$cc_num',
              exp_dat_mon = '$exp_dat_mon',
               exp_dat_yea = '$exp_dat_yea',
              cc_name = '$cc_name',
              date = NOW()";
          $insert_cc_data = mysql_query($sql) or die(mysql_error()) ;
          # get id for lots table
          # to keep track of each user's lots
          $id = mysql_insert_id();
         * Insert Lots
        foreach ($_POST as $key => $val) {
            # sanitize data in all fields in loops
            if (preg_match("/lot([0-9]+)/", $key,  $matches)) {
            #echo "-- $matches[0]";
            if($_POST['lot'.$matches[1]] != '') {
        $val_lot = strip_invalid_chars($_POST['lot'.$matches[1]]);
        $val_lot_desc = strip_invalid_chars($_POST['lot_desc'.$matches[1]]);
        $val_lot_max = strip_invalid_chars($_POST['lot_max'.$matches[1]]);       
        // looks like strip_invalid_chars with type 'all' was stripping out '.' and perhaps the comma from
        // the javascript that formatted the number eg: 1,204.02
        // will now set type 'insecure' for strip_invalid_chars, which should leave '.' and , commas intact
        // for now will leave the lot_max_bid field as a varchar and have the javascript do the formatting
        // NOTE if the user's browser does not have javascript enabled
        // then currency will not be formatted into the database
        // would need to check entries for a '.' and if not found then use php currency formatting function
        $val_lot_max_bid = strip_invalid_chars($_POST['lot_max_bid'.$matches[1]], 'insecure');
        if(!preg_match("/./", $val_lot_max_bid)) {
            //$val_lot_max_bid = number_format($val_lot_max_bid, 2, '.', ',');
                    #echo $val_lot . "<br />";
                    #echo $val_lot_desc  . "<br />";
                    #echo $val_lot_max . "<br />";
                    #echo $val_lot_max_bid . "<br />";
                $query_lots = "INSERT
                         INTO
                                lots
                                (lot_nu,
                                 lot_desc,
                                 lot_max,
                                 lot_max_bid,
                                 user_id,
                                 date
                                values(
                                '" . $val_lot . "',
                                '" . $val_lot_desc . "',
                                '" . $val_lot_max . "',
                                '" . $val_lot_max_bid . "',
                                '$id',
                                NOW()
            #v_dump($matches[1]);
            $insert_lots = mysql_query($query_lots) or die(mysql_error());
           } # end of if isset
     * Make Sure Duplicate Entries Don't Occur
     * When User Hits Refresh Here
?>
    <html>
  <head>
    <title>Lang's Bids</title> 
<script type="text/javascript" src="../Documents/Langsauction/www/langsauction.com/bids/site.js"></script>
<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">      
  </head>
<body>
    <center>
    <table width="750">
        <tr>
            <td valign="center"><img src="https://langs11.securesites.net/bids/images/Bid-Banner.jpg">
            <br />
    <font size="-1" face="Verdana, Arial, Helvetica"><p><ul>Your Absentee Bid Information Was Received. Thank You.</ul></p>
    <p><ul><a href="javascript:window.close()">Close Window</a></ul></p></font>
               </td>
           </tr>
    </table>
    </center>
    </body>
    </html>
<?php
   * Send Email
  $today = date("F j, Y, g:i a");
  //$to = "[email protected]";
  //$to = "[email protected]";
  //$to = "[email protected]";
  // current email address to use!
  $to = "[email protected]";
  //$to = "[email protected]";
  $from = "[email protected]";
  $subject = "A Lang's Absentee Bid Has Been Submitted - " .$today. "";
  $message = "A Lang's Absentee Bid Has Been Submitted on " .$today. "\n\n Visit the Admin Area to view this entry:\n\nhttps://langs1.securesites.net/lang_cc/index.php";
  $headers = "From: $from\r\n";
  $send = mail($to, $subject, $message, $headers);
  exit;
} # end of submit
    ?>
<html>
  <head>
    <title>Lang's Bids</title>
         <LINK REL="StyleSheet" HREF="../Documents/Langsauction/www/langsauction.com/bids/bids.css" TYPE="text/css">
<SCRIPT LANGUAGE="JavaScript">
<!--http://javascript.internet.com/forms/currency-format.html-->
<!-- Begin
function formatCurrency(num) {
num = num.toString().replace(/\$|\,/g,'');
if(isNaN(num))
num = "0";
sign = (num == (num = Math.abs(num)));
num = Math.floor(num*100+0.50000000001);
cents = num%100;
num = Math.floor(num/100).toString();
if(cents<10)
cents = "0" + cents;
for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++)
num = num.substring(0,num.length-(4*i+3))+','+
num.substring(num.length-(4*i+3));
//return (((sign)?'':'-') + '$' + num + '.' + cents);
return (((sign)?'':'-') +  num + '.' + cents);
//  End -->
</script>
<style type="text/css">
  .disclaimer {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    color: #000;
    margin: 0px;
    padding: 0px;
  .heading {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 30px;
    color: #6A0000;
  .buttons {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 54px;
  .footer {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 1px;
    font-style: italic;
  .tabletitles {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
  </style>
  </head>
  <!-- body -->
<body>
<form  name=currencyform method="post" action="<?=$_SERVER['../Documents/Langsauction/www/langsauction.com/bids/PHP_SELF']?>#for m_start">
<center>
<table width="750" border="0" cellpadding="0" cellspacing="5" class="text">
    <tr>
        <td colspan="2" align="center"><img src="Auction Banner.jpg" width="960" height="255" />
        </td>
    </tr>
    <tr>
        <td colspan="2" align="left">
    <br>
    <center>
    <font face="arial" size="3">
    <span class="heading">Absentee and Phone Bid Form </span><br>
    </font>
    </center>
    <div align="center"><br>
      <span class="disclaimer">IMPORTANT: Please read CONDITIONS OF SALE before filling out form.<br><br>
        <strong>Absentee Bidding:</strong> Please complete this form to absentee bid on any lots (catalog item numbers) in this auction. Absentee bids are executed on your behalf by our staff in competition with bids from other bidders. In the event two identical absentee bids are received, the bid first received will be accepted. In the event your maximum bid ties with a bid from the phone, the normal policy is to go one increment higher on your behalf to break the tie in your favor. If you want us to do so, PLEASE INDICATE +1 ON THE FORM, IF NOT, PLEASE INDICATE MAX. <br><br>
        <strong>Phone Bidding:</strong> If you want to bid on the phone, through a member of Lang’s staff during the auction, please indicate so on this form along with the numbers of the lots you intend to bid on. Be sure to indicate the phone numbers where Lang’s can call you when it’s time for you to bid. We will make every effort to execute all absentee and phone bids. However, if there is an error or omission, Lang’s will not be held liable. <br><br>We require a good faith deposit equal to 20% of the maximum total bid (bank check, money order or VISA/Master Card).
        An 18% buyer’s premium will be added to all successful bids. A 3% discount (resulting in 15%) is given for cash or check payments.
  <br><br>
  <strong>Invoices will be emailed at the close of the auction on Sunday night to the email address provided.</strong><br> Please check your Spam folder or contact Lang’s office if you do not receive your invoice.<br><br>
        ~MAKE CHECKS PAYABLE TO LANG’S ~ Payment is due in full within ten days following the auction.
        Failure to pay within ten days following the auction will jeopardize future absentee & phone bidding privileges.
        </span><br><br>
      <hr width="100%" size="3" />
    </div>
    <p></p>
        </td>
    </tr>
    <tr>
      <td colspan="2">
      <a name="form_start">
        <br />
        <?php
        $error_count = count($errors);
        if($error_count > 0) {
          echo "<font face=\"arial\" color=\"red\" size=\"2\">";
          echo "The Following Errors Occured:<br /><br />";
        #  $errors = $_GET['errors'];
          foreach ($errors as $error_item) {
              echo "$error_item<br />";
          echo "</font>";
        } # end of if error_count
          ?>     
      </td>
    </tr>
       <tr>
        <td colspan="2"></td></tr>
    <tr <?php if(in_array('first_name', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>First Name     </p>
        </td>
        <td align="left" width="550">
            <input name="first_name" type="text" value="<?=$_POST['first_name']?>"  maxlength="100" size="25" />
            <font color="orangered"><b>*</b></font>
        </td>
    </tr>
    <tr <?php if(in_array('last_name', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left" <?php if(in_array('last_name', $error_fields)) { echo "class=\"signupform\"";}?>>
            <p>Last Name     </p>
        </td>
        <td align="left">
            <input name="last_name" type="text" value="<?=$_POST['last_name']?>" maxlength="100" size="25" />
            <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr>
        <td align="left" <?php if(in_array('address1', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
            <p>Address 1     </p>
        </td>
        <td align="left">
            <input name="address1" type="text" value="<?=$_POST['address1']?>" maxlength="100" size="25" />
            <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr>
        <td align="left">
            <p>Address 2     </p>
        </td>
        <td align="left">
            <input name="address2" type="text" value="<?=$_POST['address2']?>"     maxlength="100" size="25" />
        </td>
    </tr>
    <tr valign="top" <?php if(in_array('city', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>City     </p>
        </td>
        <td align="left">
             <input name="city" type="text" value="<?=$_POST['city']?>"  maxlength="100" size="25" />
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr valign="top" <?php if(in_array('state', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>State / Province     </p>
        </td>
        <td align="left">
  <!--     
<select name="state" class="text">    
  <option value="<?php echo isset($_POST['state']) ? $_POST['state'] : ""; ?>"><?php echo isset($_POST['state'])  ? $_POST['state'] : "Select State"; ?></option>   
<?php echo QAstatelist($vars['state']); ?>"
                                    </select>
-->
        <input name="state" type="text" value="<?=$_POST['state']?>"  maxlength="100" size="25" />
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr valign="top" <?php if(in_array('zip', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Zip / Postal Code     </p>
        </td>
        <td align="left">
             <input name="zip" type="text" value="<?=$_POST['zip']?>"  maxlength="100" size="25" />
            <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <!-- adding Country -->
     <tr valign="top" <?php if(in_array('country', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Country     </p>
        </td>
        <td align="left">
             <input name="country" type="text" value="<?=$_POST['country']?>"  maxlength="100" size="25" />
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
     <tr valign="top" <?php if(in_array('phone', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Telephone     </p>
        </td>
        <td align="left">
             <input name="phone" type="text" value="<?=$_POST['phone']?>"  maxlength="100" size="25" />
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr valign="top" <?php if(in_array('email', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>eMail     </p>
        </td>
        <td align="left">
             <input name="email" type="text" value="<?=$_POST['email']?>"   maxlength="100" size="25" />
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
      <tr valign="top" <?php if(in_array('cc_type', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Credit Card Type     </p>
        </td>
        <td align="left">
    <select name="cc_type" size="1">
         <option value="<?=$_POST['cc_type']?>"><?php echo isset($_POST['cc_type']) ? $_POST['cc_type'] : "Select Type"; ?></option>   
         <option value="Visa">Visa</option>
         <option value="MasterCard">MasterCard</option>
    </select>
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr <?php if(in_array('cc_num', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Credit Card Number     <br /></p>
        </td>
        <td align="left">
            <input name="cc_num" type="text" value="<?=$_POST['cc_num']?>" maxlength="100" size="25" />
            <font color="orangered" size="+1"><tt><b>*</b></tt><br /><font face="arial" size="1" color="#FF0000"><b>(numbers only, no dashes please)</b></font></font>
        </td>
    </tr>
     <tr <?php if(in_array('exp_dat_mon', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?><?php if(in_array('exp_dat_yea', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Expiration Date     </p>
        </td>
        <td align="left">
           <select name="exp_dat_mon" size="1">
             <?php if(!isset($_POST['exp_dat_mon'])) { echo "<option value=\"\">Select Month</option>";}?>
         <?php echo month_display($***_month, $_POST['exp_dat_mon']); ?>"
       </select>
        <select name="exp_dat_yea" size="1">
             <option value="<?=$_POST['exp_dat_yea']?>"><?=$_POST['exp_dat_yea']?></option>
             <option value="2008">2008</option>
             <option value="2009">2009</option>
             <option value="2010">2010</option>
             <option value="2011">2011</option>
             <option value="2012">2012</option>
             <option value="2013">2013</option>
             <option value="2014">2014</option>
             <option value="2015">2015</option>
             <option value="2016">2016</option>
             <option value="2017">2017</option>
             <option value="2018">2018</option>
             <option value="2019">2019</option>
             <option value="2020">2020</option>
             <option value="2021">2021</option>
             <option value="2022">2022</option>
       </select>
        <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr <?php if(in_array('cc_name', $error_fields)) { echo "bgcolor=\"FFCCCC\"";}?>>
        <td align="left">
            <p>Names As It      <br />
        Appears On Card     </p>
        </td>
        <td align="left">
            <input name="cc_name" type="text" value="<?=$_POST['cc_name']?>"  maxlength="100" size="25" />
            <font color="orangered" size="+1"><tt><b>*</b></tt></font>
        </td>
    </tr>
    <tr>
        <td colspan="2">
        <table width="640">
        <tr><td colspan="4"><hr noshade="noshade" /></td></tr>
        <tr><td colspan="4"><font face="arial" size="3" color="#FF0000">STEP 3</FONT></td></tr>
                       <tr>
            <td align="left" valign="top" class="tabletitles">LOT No.</td>
            <td align="left" valign="top" class="tabletitles">DESCRIPTION</td>
            <td align="left" valign="top" class="tabletitles">MAX, +1 or PHONE</td>
            <td align="left" valign="top" class="tabletitles">BID AMOUNT</td>
                    </tr>
          <?php
          for($x = 1; $x < 16; $x++) {
          ?>
               <tr>
            <td>
            <input name="lot<?=$x?>" type="text" value="<?=$_POST['lot' . $x]?>"  maxlength="90" size="15" />
            </td>
            <td>
            <input name="lot_desc<?=$x?>" type="text" value="<?=$_POST['lot_desc' . $x]?>" maxlength="100" size="50" />
            </td>
            <td>
            <input name="lot_max<?=$x?>" type="text" value="<?=$_POST['lot_max' . $x]?>" maxlength="90" size="30" />
            </td>
            <td>
            <input type=text name="lot_max_bid<?=$x?>" maxlength="90" size="30" value="<?=$_POST['lot_max_bid' . $x]?>" onBlur="this.value=formatCurrency(this.value);">
    <!-- old input field without javascript currency formatter
                <input name="lot_max_bid<?=$x?>" type="text" value="<?=$_POST['lot_max_bid' . $x]?>"  />
    -->
            </td>
            </tr>
          <?php
          ?>
        </table>
        </td>
    </tr>
    <tr>
        <td colspan="2">
         <p><br /><br /><p>
             <input type="checkbox" name="agree" value="yes" <?php if($_POST['agree'] == 'yes') { echo "checked";}?>> <b>I have read and accept the <a href="http://langsauction.com/CONDITIONS OF SALE.pdf" target="_blank"><font color="#FF0000">Conditions of Sale (required)</b></a>
         </p>
         <br />
        </td>
    </tr>
    <tr>
        <td align="right" colspan="2">
            <hr noshade="noshade" />
            <input type="reset" value="Reset" />
            <input type="submit" name="submit" value="Submit " />
        </td>
    </tr>
</table>
</center>
</form>
<br>
<hr width="100%" size="3" /><br>
<p align="center" class="footer">Lang's Auction, Inc. &#8226; 663 Pleasant Valley Road &#8226; Waterville, NY 13480 </p>
<p align="center" class="footer">Phone: 315-841-4623 &#8226; Fax: 315-841-8934 &#8226; <a href="mailto:[email protected]">[email protected]</a></p>
    <br />
    <hr width="75%" size="3" />
    <p align="center" class="footer">     </p>
<div align="center"><i>&copy; 2012 Lang's Auction, Inc. All rights reserved.</i></div>
    </p>
  <script type="text/javascript">
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-17131030-1']);
  _gaq.push(['_trackPageview']);
  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
</script>
</body>
</html>
<!--- table bottom of main body content -->

Similar Messages

  • HT201304 I updated my ipad mini to ios7 and after that the restrictions have been turned on automatically. It was off before the update and I din do after either. I tried 1234 but it doesn't work. Please help me.

    I updated my ipad mini to ios7 and after that the restrictions have been turned on automatically. It was off before the update and I din do after either. I tried 1234 but it doesn't work. Please help me.

    1. It is never a good idea to include personal info like your email address or Apple ID in a post on an open forum.
    2. The email you received DOES NOT say your Apple ID cannot be used to unlock this iPad. The email informs you that your Apple ID was used to unlock an iPad. Fortunately the iPad is yours. The message confirms that. If your Apple ID was used to unlock an iPad that was not yours your would then know to change your password. Since the iPad is yours you do not need to change your password.
    Is your iPad working?

  • [Acrobat X Standard] The tool box doesn't work. Please help!

    [Acrobat X Standard] The tool box doesn't work. Please help!
    I have a Acrobat X Standard.
    When I open the documents, I can't click the tool box. but when I don't open the documents, I can use the tool box.
    To solve the problem,
    1. reinstall the menu.
    2. reboot the computer.
    But, It still didn't work.
    Plz help!!

    Was it AA X Std that you had these options in (sorry, I only have Pro)? If it was the trial (that is Pro), it may be that Std does not have to feature. Under XI at the Adobe site, there is a comparison of features between Std and Pro that might give you a hint.
    There is also an option to turn on or hide many tools. For me there is a small icon just above the tools...comment titles. If you select that it give a list of tools you can display. Often, several are not displayed by default. How you lost them is another things, but it is getting them that is the basic question.

  • I restored my ipod and now the Nike app is crashing on me.  I've tried turning it off and back on but it doesn't work. Please help.

    I restored my ipod and now the Nike app is crashing on me.  I've tried turning it off and on again, but it still doesn't work.  Please help.

    Hi,
    Have you tried a Reset...
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    The Apple logo will Appear and then Disappear...
    Usually takes about 15 - 20 Seconds...
    Release the Buttons...

  • HT1277 I cannot open the new email icon for 10.6.8 and the latest secrtoy update. My old "Stamp" icon email won't let me in either indicating that the new OS version doesn't work. Please help

    I cannot open the new email icon for 10.6.8 including the latest security update. My old "Stamp" icon email won't let me in either indicating that the new OS version doesn't work. Please help. I have spend over 4 hours installing and reinstalling updates, etc. and I don't know where to go from here.....

    Mac OS X v10.6: Mail.app won’t open, or "You can't use this version of Mail…" alert after installing Security Update 2012-004:
    http://support.apple.com/kb/TS4424?viewlocale=en_US&locale=en_US
    Fellow user Grant Bennet-Alder offers this solution:
    Some users have reported this problem if the Mail Application has been moved out of the top-level /Applications folder, or duplicated in another location.
    When the Security Update is done, the old version of Mail is disabled.
    The solution has been to:
    1) make certain Mail is in the /Applications folder
    2) There is no other copy anywhere else.
    3) Once steps 1 and 2 have been done, Manually download and re-apply the Security Update (2012-004) by hand.
    Security Update 2012-004 (Snow Leopard)
    If the Mail.app has been LOST, it can be re-installed by applying the 10.6.8 version 1.1 combo update. But this update is quite large and it is usually not necessary:
    Mac OS X 10.6.8 Update Combo v1.1

  • Hello, Please Help! When I bring the mastered audio from Soundtrack pro back to final cut pro 7, the audio plays well at the beginning 3 mins later it doesn't sync. Please Help!!!

    Hello, Please Help!
    When I bring the mastered audio from Soundtrack pro back to final cut pro 7, the audio plays well at the beginning 3 mins later it doesn't sync.
    Please Help!!!
    Edgil

    Make sure your easy setup has the correct frame rate for your sequence.  Seems crazy but somehow or other fcp assigns a frame rate to audio files.   I've found this can sometimes be tricky to get right.  Here's what I've done to force the issue.  Make sure the easy setup frame rate reflects that of the target sequence in fcp.  Create a new project.  import the audio in the new project.  And then copy the clip from the new project to your main project. 
    Good luck

  • My ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!

    my ipad is on an infinite loop.  I used ios7 for a few days and then did updates on some of my apps. that's when the infinite loop started.  I have tried pressing the power and home button at the same time, but it doesn't work. Please help!
    I even tried some hints posted for ios6 (turn off Ipad, holding home button and plugging in power cord at the same time and then releasing the home button)
    I did manage to get a different screen that shows the itunes icon and a power cord, but nothing happens.

    You were on the right track. You got the connect to iTunes screen and you ended to use iTujes to restore your iPad. Try recovery mode again.
    Recovery Mode Instructions
    Disconnect the USB cable from the iPad, but leave the other end of the cable connected to your computer's USB port.
    Turn off iPad: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for iPad to turn off.
    If you cannot turn off iPad using the slider, press and hold the Sleep/Wake and Home buttons at the same time. When the iPad turns off, release the Sleep/Wake and Home buttons.
    While pressing and holding the Home button, reconnect the USB cable to iPad. When you reconnect the USB cable, iPad should power on.
    Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears you can release the Home button.
    If necessary, open iTunes. You should see the recovery mode alert that iTunes has detected an iPad in recovery mode.
    Use iTunes to restore iPad.

  • My iPhone 4 won't switch off. When I press the power button at the top, the phone doesn't respond. Please help!

    My iPhone 4 won't switch off. When I press the power button at the top, the phone doesn't respond. Please help!

    Try a reset

  • I want to update my WINDOWS 8 TO WINDOWS 8.1. But it doesn't updating. PLEASE HELP ME TO FIX THIS ERROR.

    SO HERE IT IS.
    I ALREADY READ MANY STEPS, MANY TIPS ON HOW TO FIX MY PROBLEM IN MY WINDOWS. BUT I REALLY CAN'T FIX IT. I'm not professional in terms of Computer System. But I really want to upgrade my Operating System to Windows 8.1.
    I really can't do it. 
    The window store says that I need to upgrade the pending updates for my applications but when I click install all.
    It's just pending. There's nothing happening. There's nothing installed. 
    So I go to control panel then search the windows update.
    There I click the Install Updates. I waited for 4 hours. But there's really nothing happening so I cancelled it.
    Then here is what happened after that.
    IT SAYS THAT code:80070003 windows update run into a problem then I clicked the "Get help with this error"
    Then I run the troubleshooting
    And then after that.
    the troubleshooting has completed this is what it said.
    Problems Found:
    Service registration is missing or corrupt
    Windows Update error 0x80070057 (2014-08-10-T-02_20_42P)
    Problems Installing recent updates
    So that's is.
    I don't know what to do.
    PLEASE HELP ME. :(

    Thanks, but, using the "free" version of Reader, there is no opportunity to open nor import the xml data - the menu options do not exist - there is no import listed.
    If we try to open the xml file directly, then we get an error - something to the effect of "unsupported file type, or the file is corrupted".
    I just noticed in my Pro version that there is the command File ->Form Data ->Import Data to Form... command. Is this what you are referring to?
    What do you recommend? Perhaps the easiest thing to do would be to purchase a few copies of Acrobat Pro for the reservations people to use? I was hoping that the free version of reader would do it, but perhaps not?
    Thanks again,
    Rob

  • Navbar alignment issue in IE. OK in Chrome. [was:Please help guys!]

    I just spent days and nights trying to learn as much as possible about web design and i think i was doing pretty good until i got to this problem. I dont know what to do, the navbar sits well in google chrome, but in internet explorer it doesnt. And i dont know what to do anymore!! please help guys!
    Heres how it shows up in google chrome:
    And heres how it sits in internet explorer:
    I have tried everything guys i dont know how to fix it!!
    Heres my html:
    <!doctype html>
    <html>
    <head>
    <meta charset=&quot;utf-8&quot;>
    <title>General Concrete Solutions</title>
    <link href=&quot;styles/gcs_cs6.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;>
    <script type=&quot;text/javascript&quot;>
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf(&quot;#&quot;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf(&quot;?&quot;))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body onLoad=&quot;MM_preloadImages('images1/images/navbar/images/images/navover_01.png','image s1/images/navbar/images/images/navover_02.png','images1/images/navbar/images/images/navove r_03.png','images1/images/navbar/images/images/navover_04.png','images1/images/navbar/imag es/images/navover_05.png')&quot;>
    <div id=&quot;container&quot;>
      <div id=&quot;header&quot;>  
        <div id=&quot;logo&quot;><img src=&quot;images/logo4.png&quot; width=&quot;186&quot; height=&quot;69&quot; alt=&quot;logo&quot;></div>
        <div id=&quot;navbar&quot;><a href=&quot;#&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Home','','images1/images/navbar/images/images/navover_01. png',1)&quot;><img src=&quot;images1/images/navbar/images/navbar_01.png&quot; width=&quot;190&quot; height=&quot;50&quot; id=&quot;Home&quot;></a><a href=&quot;#&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Services','','images1/images/navbar/images/images/navover _02.png',1)&quot;><img src=&quot;images1/images/navbar/images/navbar_02.png&quot; width=&quot;190&quot; height=&quot;50&quot; id=&quot;Services&quot;></a><a href=&quot;#&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Portfolio','','images1/images/navbar/images/images/navove r_03.png',1)&quot;><img src=&quot;images1/images/navbar/images/navbar_03.png&quot; width=&quot;190&quot; height=&quot;50&quot; id=&quot;Portfolio&quot;></a><a href=&quot;#&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Company Info','','images1/images/navbar/images/images/navover_04.png',1)&quot;><img src=&quot;images1/images/navbar/images/navbar_04.png&quot; width=&quot;190&quot; height=&quot;50&quot; id=&quot;Company Info&quot;></a><a href=&quot;#&quot; onMouseOut=&quot;MM_swapImgRestore()&quot; onMouseOver=&quot;MM_swapImage('Contact Us','','images1/images/navbar/images/images/navover_05.png',1)&quot;><img src=&quot;images1/images/navbar/images/navbar_05.png&quot; width=&quot;188&quot; height=&quot;50&quot; id=&quot;Contact Us&quot;></a></div>
      </div>
      <div id=&quot;main_image&quot;></div>
      <div id=&quot;left_column&quot;>Content for  id &quot;left_column&quot; Goes Here</div>
      <div id=&quot;center_column&quot;>Content for  id &quot;center_column&quot; Goes Here</div>
      <div id=&quot;right_column&quot;>Content for  id &quot;right_column&quot; Goes Here</div>
    </div>
    </body>
    </html>
    And heres my CSS:
    @charset &quot;utf-8&quot;;
    /* CSS Document */
    #container {
    width: 968px;
    background: #FFF;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
    overflow:hidden;
    #main_image {
    background-image: url(../images/concrete-driveway.jpg);
    background-repeat: no-repeat;
    height: 376px;
    width: 968px;
    #left_column, #center_column, #right_column {
    width: 316px;
    float:left;
    #center_column, #right_column {
    margin-left: 10px;
    #header {
    color: #FFF;
    background-color: #000;
    height: 100px;
    body {
    font-family: &quot;Trebuchet MS&quot;, Arial, Helvetica, sans-serif;
    color: #3b3b3b;
    background-color: #FFF;
    margin: 0px;
    #logo {
    width: 170px;
    height: 70px;
    float: left;
    background-color: #000;
    position: static;
    padding-top: 15px;
    padding-right: 19px;
    padding-bottom: 0px;
    padding-left: 0px;
    left: auto;
    right: 400px;
    margin-left: 390px;
    #navbar {
    height: -36px;
    width: 950px;
    margin-right: auto;
    margin-left: 10px;
    position: absolute;
    left: 59px;
    top: 362px;

    For best possible help with layout issues, we need to see a link to the live page.  Please upload your work so far to a TEST folder on your remote server and post the URL here.
    In the meantime, remove borders from linked images with the following CSS rule.
    a img {border:none}
    Nancy O.

  • ITunes shows error message, QuickTime doesn't respond! PLEASE HELP!

    My iTunes doesn't open anymore, it shows that error message (iTunes needs to close. Send error report... etc). I tried uninstalling it, installing gain from the iPod CD, from the website, and nothing works. On Apple's support site it said I needed to uninstall QuickTime and repair iTunes, but my computer won't let me uninstall Quick Time, it doesn't work. I have uninstalled and reinstalled iTunes 100 times, I have restarted my computer too and nothing seems to work.
    I don't use Norton, I use McAfee. I don't know what else to do, somebody please help me solve this problem, I have been trying to fix it for WEEKS!
    Dell Inspiron   Windows XP  

    IT WORKS!!!!!!
    This is unblievable, but iTunes is working, and all I had to do was install it in a different folder! Now both QT and iTunes work fine, my library is intact and I can update my iPod!
    The only weird thing is that all the files on the library that are on my iPod now have that exclamation point, meaning I have to look for them, but that's ok, cause they are still on my iPod even after updating!
    Thank a lot Katrina! I won't annoy you anymore!

  • Digital signatures won't print in a PDF form emailed to me.  PLEASE HELP!

    I've been trying to print some documents emailed to me in PDF format.  On my monitor, the entire document shows up fine, INCLUDING THE SIGNATURES, however when I print them, the form is printed WITHOUT the VERY NECESSARY signatures!  PLEASE help!  I've been trying to resolve this for 2 1/2 days with a great deal of help from my vetrinarian and Global Vet Link!

    When I select Print Comments and Markups, it still doesn't print.  The signatures were created using the Pencil tool.  Not sure why its not printing.

  • 10g form hangs when compiling! - please help!

    Hi,
    I'm having a problem compiling a couple of my forms. I'm using forms 10g and when I compile the form it hangs in a particular program unit. Actually, if I connect to my database first and then open the form in forms builder, it will hang. I have to connect after I load the form.
    In the program unit that compiling is hanging on, we are selecting from a synonym which is a dblink to another database. The synonym is in a 9i database, the dblink is linking to a table in a 10g database. I can see the synonym and perform a select from it. However, it will not compile in the form.
    Please help!
    Thanks!

    Hi,
    The same issue is faced by me when I was migrating my application from forms6i (oracle 8i) to forms 10g(oracle 10g).
    Solution:
    create a view based on the table on the other database (use db link)
    now create a synonym using this view and make it public.
    use this synonym in your form.
    It looks like something weared but this worked !!
    Try it !!

  • I bought new mac air. but 3 days later my air doesn't turn on. please help me!!!!, I bought new mac air. but 3 days later my air doesn't turn on. please help me!!!!

    My new mac air doesn't turn on. Please help me !!!!!!!!!!

    I've experienced this behavior before. Sometimes confusing. Sometimes stuck in a sleep mode. I've opened my Air and the computer would not wake up.
    You have not given much information.
    So simple things first.
    Have you ever booted this computer? You said your, "new mac air".
    If yes, what status was it in the last time you left it?
    Meaning, Did you shut it down or did you put it to sleep?
    If you put it to sleep, how did you put it to sleep? By a menu dialog or by closing the computer?
    Other things to be sure are done....
    Is your power supply connected to the MacBook Air?
    Is the wall outlet you have connected your power supply to interupptable by a light switch?
    Is the mag connector communicating with the battery?... meaning, on the mag(netic) connector do you see the LED lit?
    The mag connector is the part of the power supply that connects to the computer.
    What color is the LED, orange or green? (respectively...charging or full charge)
    Cannot direct you to a solution without knowing these few things.

  • Cannot insert fieldset inside Fluid Grid div (Was: Please help)

    Please help..I couldnot insert fieldset inside FG div.(I couldnot find the fieldset while viewing in the browser also.)

    A <fieldset> is a <form> element.    Copy and paste this form code into a new, blank document.  Save and preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Form with jQuery Validation</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--JQUERY LATEST-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--JQUERY VALIDATE-->
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js">
    </script>
    <style>
    /**BEGIN FORM STYLES**/
    #contact {
    font-size: 14px;
    width:95%;
    margin: 0 auto; /**adjust margins as needed**/
    background: #FFF;
    border: 2px groove #999;
    padding: 2%;
    #contact fieldset {
    margin-bottom:5px;
    background:#CCC;
    #contact legend {
    padding: 8px;
    background: #000;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
    /**wrap form lables and fields inside ordered lists for better web accessibility**/
    #contact ol {
    list-style:none;
    margin:0;
    padding:0}
    #contact li {
    padding:5px;
    margin: 0;
    clear: left;
    #contact label{
    display:inline-block;
    float:left;
    line-height: 23px; /**lines up labels with fields**/
    width:15%;
    font-size: 12px;
    text-align:right;
    margin-right: 10px; /*space between labels, fields*/
    #contact textarea,
    #contact input[type=text],
    #contact input[type=email],
    #contact input[type=number] {
    width: 45%; /**same width on fields**/
    padding: 5px;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    #contact select {width:47%}
    /**field background on focus**/
    #contact input:focus,
    #contact input:active,
    #contact textarea:focus,
    #contact textarea:active,
    #contact select:focus,
    #contact select:active
    {background-color: #FFC;}
    #contact label.error {
        line-height:1.5;
        color:#F00;
        background:#FFC;
        padding:3px;
        box-shadow:1px 2px 3px #333
    </style>
    </head>
    <body>
    <p>Basic Contact Form</p>
    <!--begin form-->
    <form id="contact" action="form-processing-script.php" method="post">
    <fieldset>
    <legend>Required Fields:</legend>
    <ol>
    <li><label for="first_name">Name:</label>
    <input name="first_name" id="first_name" type="text" required placeholder="First"></li>
    <li><label for="last_name">Last:</label>
    <input name="last_name" id="last_name" type="text" required placeholder="Last"></li>
    <li><label for="e_mail">E-mail:</label>
    <input name="e_mail" id="e_mail" type="email" required placeholder="[email protected]"></li>
    <li><label for="selectTest">Select One:</label>
    <select name="selectTest" id="selectTest" size="4" required title="Please select something!">
    <option value="1">Saab</option>
    <option value="2">Audi</option>
    <option value="3">Fiat</option>
    <option value="4">BMW</option>
    </select></li>
    </ol>
    </fieldset>
    <fieldset>
    <legend>Optional Fields:</legend>
    <ol>
    <li>
    <label for="phone">Phone:</label>
    <input name="phone" id="phone" type="number" placeholder="(area code) 123-4567" />
    </li>
    <li><label for="subject">Subject:</label>
    <input name="subject" id="subject" type="text" />
    </li>
    <li><label for="message">Message:</label>
    <textarea id="message" name="message" placeholder="remarks"></textarea>
    </li>
    <li><input name="submit" type="submit" value="Submit">
    </li>
    </ol>
    </fieldset>
    </form>
    <!--end form-->
    <!--form validation-->
    <script>
    $(document).ready(function() {
        $("#contact").validate();
        $("#selectTest").validate();
    </script>
    </body>
    </html>
    Nancy O.

Maybe you are looking for

  • Open Dialog Box hiding behind other Apps

    Users frequent find that the GW Open Dialog box hides behind the current active screen - Is there a way to make sure it comes to the front ? Steve

  • Multiple desktops - Why?

    I'm a recent convert from PC to Mac.  I love my Macbook Air.  However, I can't seem to get the point of multiple desktops.  Can anyone help me?  I looked at a couple of books, and done some online searching, and I have come up empty. Thanks

  • SMP in Adobe AIR mobile

    Hi,   How do we get SMP (Strobe Media PlayBack) to work in Adobe AIR Mobile project? Ideally there should be a SWC for SMP.... Regards Baliga

  • JMS related error

    We are getting the following error occasionally from an asynchronous Process. The process reads from a remote tibco JMS queue and publishes to a Tibco JMS Topic for the callback. <2006-05-08 15:04:24,791> <ERROR> <default.collaxa.cube.engine.delivery

  • Cant update, keep getting "Can't connect to the Apple Software Update server." on Appstore

    Hi, From last 1 week I am getting this error. I tried following: 1. Restart mac book several times - did not work 2. Tried connecting to different wifi networks - did not work 3. Deleted appstore and one more .plist files and restarted - did not work