Welcome to Alliance Auctions Online!
× Bidding has ended on this item.
"); if (!$(this).is(":visible")) { $(this).fadeTo(1000, 1, function () { $(this).slideDown(500); }); } }); } if (data.Accepted) { //prepare success system message systemMessage = "
×" + contextMessageDictionary["ActionSuccess"] + "
"; if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } //render checkout button if a lineitem was returned //EXCEPT: when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices && ownerAllowsInstantCheckout && data.LineItemID) { var checkoutUrl = 'https://allianceauctionsonline.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f23321339%2fJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } if (data.LineItemID && !highlightCheckoutButtonForBuyNow) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=lostandfound&template=ask_listing_question&listingID=23321340&returnUrl=%2FEvent%2FLotDetails%2F23321339%2FJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=23321340&Receiver=lostandfound' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } else { //ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } else { //Context is null, but ReasonString is populated, prepare a Negative System message if (contextMessageDictionary[data.ReasonString]) { systemMessage = "
×" + contextMessageDictionary[data.ReasonString] + "
"; } else { systemMessage = "
×" + data.ReasonString + "
"; } if (!$(".awe-rt-ListingActionMessage").is(":visible") || $(".awe-rt-ListingActionMessage").html() == "") { $(".awe-rt-ListingActionMessage").hide(); $(".awe-rt-ListingActionMessage").html(systemMessage); $(".awe-rt-ListingActionMessage").slideDown(); } else { $(".awe-rt-ListingActionMessage").fadeOut(200, function () { $(this).html(systemMessage); $(this).fadeIn(200); }); } } } }); // render a checkout button if: // // - the lot ends successfully, and // - the winner is viewing, but only if // - auto gen invoices is disabled // // mainly to prevent one invoice per LOT per buyer, rather than the generally preferred one invoice per EVENT per buyer $(document).on("SignalR_UpdateListingStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; if (autoGenerateInvoices || ownerAllowsInstantCheckout) { if (data.Status == "Successful" && data.LineItemID && data.LineItemPayerUN == "") { //when Auto Generate Invoices is enabled, do not render checkout buttons for lots until the entire event has ended if (!autoGenerateInvoices) { var checkoutUrl = 'https://allianceauctionsonline.com/Account/Checkout?lineitemid=' + data.LineItemID; checkoutUrl += '&returnUrl=%2fEvent%2fLotDetails%2f23321339%2fJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; if ($(".detail__context-menu").find(".btn__detail__checkout").length == 0) { $(".detail__context-menu").prepend(checkoutHtml).show(); } else { jslog("skipped rendering checkout button because one already exists."); } } //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { //"/Account/SendListingMessage?receiver=tester1&template=ask_listing_question&listingID=166614&returnUrl=%2FListing%2FDetails%2F166614%2Ftest-item-J" var contactSellerUrl = '/Account/SendListingMessage?receiver=lostandfound&template=ask_listing_question&listingID=23321340&returnUrl=%2FEvent%2FLotDetails%2F23321339%2FJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for line item #" + data.LineItemID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=23321340&Receiver=lostandfound' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for line item #" + data.LineItemID); } } } }); $(".GoToPrevLot").on("click", function () { var thisLotOrder = 191; var lastLotOrder = 341; if (thisLotOrder > 0) { $(".GoToPrevLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 23227762, lotOrder: (thisLotOrder - 1) }) .done(function (data) { if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(".GoToNextLot").on("click", function () { var thisLotOrder = 191; var lastLotOrder = 341; if (thisLotOrder < lastLotOrder) { $(".GoToNextLot").prop("disabled", true); $.post("/RealTime/GetLotIdByLotOrder", { eventId: 23227762, lotOrder: (thisLotOrder + 1) }) .done(function (data) { console.log("next lot result: ", data); if (data.LotId) { window.location.href = "/Event/LotDetails" + "/" + data.LotId; } }); } }); $(document).on("SignalR_UpdateInvoiceStatus", function (event, data) { if ($.inArray(data.ListingID, interestingListings) < 0) return; jslog("SignalR_UpdateInvoiceStatus (listing, invoice, status, payer): " + data.ListingID + ", " + data.InvoiceID + ", " + data.InvoiceStatus + ", " + data.InvoicePayerUN); //show "View Invoice" or "Checkout" button if applicable if (data.InvoicePayerUN == aweUserName) { //get result of /RealTime/IsInvoicePayable?invoiceId=nnnnnn var promise = Proxy.invokeAsync("IsInvoicePayable", { invoiceId: data.InvoiceID }, function(result) { var checkoutUrl = 'https://allianceauctionsonline.com/Account/Invoice/' + data.InvoiceID; checkoutUrl += '?returnUrl=%2fEvent%2fLotDetails%2f23321339%2fJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; if (result.isPayable) { //invoice is payable if (autoCheckoutForBuyNow) { window.location = checkoutUrl; } if ($("a.btn__detail__checkout").length == 0) { //render checkout button if one does not already exist var checkoutHtml = '
' + '' + '' + '' + '' + '' + '' + 'Checkout' + '' + '' + '
'; $(".detail__context-menu").prepend(checkoutHtml).show(); jslog("checkout button rendered for invoice #" + data.InvoiceID); } } else { //the invoice is not payable, so instead of 'checkout' button, render 'view invoice' button if one does not already exist if ($("a.btn__detail__invoices").length == 0) { var viewInvoiceHtml = '
' + '' + '' + '' + '' + '' + '' + 'View Invoice' + '' + '' + '
'; $(".detail__context-menu").append(viewInvoiceHtml).show(); jslog("view invoice button rendered for invoice #" + data.InvoiceID); } } //only render the contact and/or feedback buttons if either // a) the web.config setting HighlightCheckoutButtonForBuyNow is set to False, or // b) the invoice is not payable if (!highlightCheckoutButtonForBuyNow || !result.isPayable) { //render contact seller button if one does not already exist if (true && $("a.btn__detail__contactuser").length == 0) { var contactSellerUrl = '/Account/SendListingMessage?receiver=lostandfound&template=ask_listing_question&listingID=23321340&returnUrl=%2FEvent%2FLotDetails%2F23321339%2FJohn-Deer-Hat-Buckeye-Necklace-Ohio-State-Statue'; var contactSellerHtml = '
' + '' + '' + '' + '' + '' + '' + 'Contact Seller' + '' + '' + '
'; $(".detail__context-menu").append(contactSellerHtml).show(); jslog("contact button rendered for invoice #" + data.InvoiceID); } //render feedback button if (true) { var feedbackUrl = '/Account/SubmitFeedback?LineItemID=REPLACELINEITEMID&ListingID=23321340&Receiver=lostandfound' .replace("REPLACELINEITEMID", data.LineItemID); var feedbackHtml = '
' + '' + '' + '' + '' + '' + '' + 'Feedback' + '' + '' + '
'; $(".detail__context-menu").append(feedbackHtml).show(); jslog("feedback button rendered for invoice #" + data.InvoiceID); } } }, function(error) { jslog("Error retrieving invoice status (1): " + error); } ); promise.fail(function (jqXHR, textStatus) { jslog("Error retrieving invoice status (2): " + textStatus); }); } }); });
Back To Catalog
Shipping Information
Terms: Payment collected onsite. Cash & Credit card, Exact cash on sight. An additional 5% will be added on credit card payments.
TERMS AND CONDITIONS FOR THIS AUCTION: (please note terms and conditions may differ for each event and are subject to change)
1. BUYERS PREMIUM: A 12% buyer's premium will be added to each purchase. If you bid $100.00 you will be charged $112.00 upon invoicing at auction close.
2. REGISTRATION: Please register online with Alliance Auctions Online to bid. Bidders must provide a valid email address. Username and password are case sensitive and no spaces are allowed.
3. PAYMENT: Winning bidders will receive an invoice via email shortly after an auction concludes. Please be sure to check your SPAM mail if you do not receive an invoice. You can also find your invoice under the My Bids button on the site once logged in. Winners will have the option of paying on site with exact cash or credit card with 5% fee added. Non-payment could result in being banned from future bidding. Each bidder is responsible to sign into their account and view their winning bids after the auction has closed.
4. SALES TAX: SALES TAX WILL BE COLLECTED.
5. BIDDING ERRORS: Please be aware that many bidders routinely increase their own bid to price an item out of reach of other bidders. You should immediately review your bids before submitted. We will not reverse bids that have caused another bidder to be outbid. If you bid on the wrong item we will not reverse your bid. Please make sure and review all bids before submitting. We will not reverse bids after the auction has begun to close, no exceptions.
6. MAXIMUM BIDS: We only use one bidding field in most cases. MANY of our buyers submit their "maximum bids" as they no doubt have seen the convenience and do not want to risk missing the opportunity by placing only real time bids on items especially in the frantic final minutes. The software will place your bid up to the max if someone bids against you. If you are being immediately out bid when you place your bid, you are most likely up against a max bid. The max bids are not disclosed. CLICK ON THE "REFRESH LINK" often to be sure you are seeing current data.
7. GROSS BIDDING ERRORS: If you mistakenly increase your own bid, place your bidder number in the bid field, or make a gross error; you must immediately contact our office by email at glenn_wit@yahoo.com or call/text Glenn Witchey 330-329-7501 . Communication of the error does not in itself resolve the error. Alliance Auctions Online will attempt to fix the bidding error.
8. STAGGERED CLOSING: The online auction closes 1 -2 items per 1 minute intervals.
9. DYNAMIC CLOSING: The closing time of an asset is automatically extended an additional 5minutes whenever a bid is placed within the last 3 minutes of the asset's closing time to allow bidders to bid and will continue until bidding ceases.
10. REMOVAL: This is an ONLINE ONLY AUCTION. DO NOT BID IF YOU ARE NOT ABLE TO PICK UP YOUR ITEMS DURING THE INDICATED REMOVAL TIME(S). NO REFUNDS OR CHARGEBACK'S WILL BE GRANTED. After the scheduled removal, items left will be considered abandoned. The amount of your purchase will be surrendered as a removal fee up to the total amount of your purchase for disposal of your item(s).
11. PICKUP OF ASSETS: Bidders are responsible for their own removal. Any item NOT picked up by the set time will be considered abandoned. Removal shall be at the expense, liability, and risk of the purchaser. Purchases will check in with the cashier to verify payment or pay and receive a copy of their invoice. Bidder further agrees to be held personally responsible for all purchases made on their bidder number, and agrees that bidder will not charge back items which are not picked up during the published removal times. Buyer authorizes Alliance Auctions Online to release buyer's assets to any individual in possession of the buyer's sales receipt. The auction company staff does not provide moving services or tools. Please be prepared to move ALL items out of the building first, then pack and sort your items! Buyers may be required to produce ID for security reasons. Please have your ID with you at all times. All Buyers accept that pickup may be electronically recorded and monitored.
12. WARRANTY & CONDITION OF ITEMS SOLD: All items are sold "AS IS, WHERE IS, with NO WARRANTY expressed or implied. Descriptions are believed to be accurate but not guaranteed. When you are not certain of the condition or use of an item please bid accordingly. Alliance Auctions Online is not responsible for the use or misuse of items, infestation and pathogens, environmental harm or any injury or harm caused by items purchased.
13. BUYER DEFAULT: If a bidder(s) defaults at an auction, the auction company may, at its option, contact the backup bidder(s) for an offer but has no legal obligation to do so.
Contact us for shipping
12.00% Buyer's Premium
This Auction Uses Proxy Bidding.
Ended
John Deer Hat & Buckeye Necklace & Ohio State Statue
Lot # A192
- SoldWinning Bid: $4.00
- 4 Bid(s) View Bid History
- High Bidder: Bquick19
Details
Condition
used
Lot # A192
System ID # 23321339
End Date
Start Date
Description
As Pictured