'; } else { snackbarContainer.classList.remove('reactified') } } function addBannerToWebsite() { var messageContainer = document.querySelector('#registrationNotice'); if (messageContainer === null || messageContainer === undefined) { jQuery('#registrationNotice').innerHtml = mgBannerHTML + hiddenHTML; } else { jQuery('#registrationNotice').removeClass('notificationBar').removeClass('reactified'); } } function removeBannerFromWebsite() { var bannerContainer = document.querySelector('#registrationNotice'); if (bannerContainer !== null || bannerContainer !== undefined) { jQuery('#registrationNotice').hide(); } } function handleCloseSuccessMessage(){ Object.assign(snackbarMessageBootstrap, {open: false}); addSnackbarToWebsite(); renderReactComponents(); } function bidderApproved() { Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Successful', variant: 'success'}); addSnackbarToWebsite(); removeBannerFromWebsite(); renderReactComponents(); } function bidderPending() { // TODO Add snackbar message when verbiage is established // Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Pending', variant: 'warning'}); // addSnackbarToWebsite(); updateApprovalStatusMsg(true, null); // renderReactComponents(); } function bidderDeclined() { Object.assign(snackbarMessageBootstrap, {open: true, children: 'Registration Declined', variant: 'error'}); addSnackbarToWebsite(); removeBannerFromWebsite(); renderReactComponents(); } function bidderError() { Object.assign(marketguardMessageBootstrap, {registrationStatus: 'ERROR'}); addBannerToWebsite(); renderReactComponents(); } // Make custom message available to Javascript functions var getCustomTier4Message = ""; var messageHTML = ''; var renderReact = '0' === '1'; var registrationStatus = ''; var depositRequired = '' === 'False'; var depositAmt = ''; var auctionId = '240065'; var depositChoice = 0; var depositHTML = '
'; var mgBannerHTML = '
'; var legacyHTML = '
'; var hiddenHTML = '
' + '' + '' + '' + '' + '' + '' + '' + '' + '
'; cc = CreditCardModal; var marketguardMessageBootstrap = { registrationStatus: registrationStatus, clientProxyUrl: 'https://clientproxy.proxibid.com', bidderId: '', auctionId: auctionId }; var depositMessageBootstrap = { clientProxyUrl: 'https://clientproxy.proxibid.com', bidderId: '', auctionId: auctionId, coreToken: '15091885-4a39-4d33-bde7-81ca85ee7a67', variant: 'small', options: { amount: depositAmt, currency: htmlDecode('') } }; if (renderReact) { if (depositRequired && (registrationStatus === '-1' || registrationStatus === '0')) { messageHTML += depositHTML; } else { messageHTML += mgBannerHTML; } } else { messageHTML += legacyHTML; } messageHTML += hiddenHTML; document.getElementById('registrationNotice').innerHTML += messageHTML; renderReactComponents(); function htmlDecode(value) { return $j('
').html(value).text(); } function showChangeCCDeposit() { depositChoice = 1; registerBidder('240065'); } function registerBidder(auctionId) { openProgressModal(); getNeedsAGDecision(auctionId, function(needScore) { if (needScore === 'true') { jQuery.ajax({ timeout: 60000, url:'/asp/getAuctionGuardDecision.asp', data: { auctionID: auctionId, ssn: 0, curp: 0 }, success: function(data) { var response = new RegExp(/.*String>(.*)).exec(data)[1]; handleAGResponse(response); }, error: function (XMLHttpRequest, textStatus, errorThrown) { sendBidderToFraudQueue(10, 'AuctionGuard call timed out after 60 seconds', true, null, true); console.error(errorThrown); } }); } else if (needScore === 'declined') { registrationStatus = '2'; handleCCResponse(registrationStatus); } else if (needScore === 'approved') { registrationStatus = '1'; handleCCResponse(registrationStatus); } else if (needScore === 'loggedOut') { if (confirm('You must login to apply to bid')) { window.location.href = '/asp/LoginBidder.asp'; } } }); } function handleAGResponse(response) { if (response !== null) { switch (response) { case "APPROVED_WHITELIST_AUCTION_COMPANY": case "APPROVED_WHITELIST_PROXIBID": case "APPROVED": registrationStatus = '1'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "DECLINED_BLACKLIST": case "DECLINED_BLACK_FLAG": case "BANNED_COUNTRY": case "DECLINED": case "PENDING_IP_NOT_TRUSTED": case "PENDING_BAD_SCORE": case "PENDING_FAILED_SSN_VERIY": case "PENDING_FRAUD": case "PENDING_CREDIT_CARD_CHECK_FAILED": registrationStatus = '2'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_FINANCIAL_QUESTIONNAIRE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsFinancialQuestionnaire(); break; case "PENDING_BIDDER_COULD_NOT_GET_CC": jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); registrationStatus = '0'; agCheckAlertMsg('You have exceeded the maximum number of attempts to add a credit card. Please contact us for further assistance.', function() { sendRegistrationEmail(0); if(showBidderStatusMessage){ updateApprovalStatusMsg(true); } callBack(false); }); registrationStatus = '0'; break; case "PENDING_EMAIL_VERIFICATION": //do not let the bidder continue until they have validated their email. registrationStatus = '0'; jQuery('#progressModal').dialog('close'); displayEmailNotVerified(); break; case "PENDING_NEED_SCORE": case "PENDING_WAITING_FOR_SCORE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsScore(); break; case "PENDING_NO_CC_ON_FILE": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsCreditCard(); break; case "PENDING_NEED_SSN": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleNeedsSSN(); break; case "PENDING_NEED_CURP": jQuery('#progressModal').dialog('close'); handleNeedsCURP(); break; case "PENDING_IP_NOT_IN_AUCTION_COUNTRY": //This is an international bidder, they must call either the auction company or proxibid to get on white list CAN NOT BID YET case "PENDING_BILLING_ADDRESS_NOT_IN_AUCTION_COUNTRY": case "PENDING_CALL_AUCTION_COMPANY_WHITE_LIST": //they must call either the auction company or proxibid to get on white list CAN NOT BID YET case "PENDING_NEED_MANUAL_APPROVAL": //Need manual approval from the auction company. Cannot allow bidding case "PENDING_CALL_PROXIBID": case "PENDING_CREDIT_CARD_VENDOR_DOWN": registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PROCESSING": registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_NEED_DEPOSIT": case "PENDING_AUTO_DEPOSIT": var ccId = jQuery('#ConfirmCCID').val(); var ccToken = jQuery('#ConfirmCCToken').val(); if (ccId != '' && registrationStatus !== '2' && depositChoice !== 1) { openProgressModal(); cc.getDeposit(ccId, ccToken, function(responseCode) { switch(responseCode) { case (1): // Approved registerBidder('240065'); break; case (0): case (2): // Declined registrationStatus = '2'; break; case (3): // Pending registrationStatus = '0'; break; default: registrationStatus = 'ERROR'; break; } jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); }, null, {depositAmt: depositAmt}); } else if (registrationStatus !== 2) { openProgressModal(); cc.launchSelectCCModal( function() { var status = cc.ccStatusCode; switch (status) { case (1): case (4): // CC Approved getAuctionGuardScore(0, 0, function(approved) { if (approved) { registrationStatus = '1'; } else { registrationStatus = '2'; } handleCCResponse(registrationStatus); }, false, 'Continue', auctionId); break; case (2): case (3): case (5): // CC Declined or max attempts reached if (cc.ccReasonCode === 2) { // Bidder Canceled action, just bow out break; } else { registrationStatus = '2'; break; } case (6): // CC Pending registrationStatus = '0'; break; default: registrationStatus = 'ERROR'; break; } jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); }, { selectCardTitle: 'Select a Credit Card for your Deposit', addCardTitle: 'Add a Credit Card for your Deposit', depositMode: true, depositAmt: depositAmt }, true); } break; case "ERROR_GENERAL_EXCEPTION": sendBidderToFraudQueue( 11, "ERROR_GENERAL_EXCEPTION", false, null, true); registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; case "PENDING_NEED_TELESIGN_VERIFICATION": handleNeedPhoneVerification(); registrationStatus = '0'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; default: sendBidderToFraudQueue( 11, "General AG Excpetion", false, null, true); registrationStatus = 'ERROR'; jQuery('#progressModal').dialog('close'); handleCCResponse(registrationStatus); break; } } else { registrationStatus = 'ERROR'; } } function handleCCResponse(registrationStatus) { sendRegistrationEmail(registrationStatus); if (registrationStatus === '0') { agAlertDialog( 'Your selected credit card is pending validation before it can be used. Please update your credit card information to try again. For assistance, contact Proxibid".', null, false, {height: 170}); } else if (registrationStatus === '-1') { // Do nothing, the bidder must have canceled their deposit } else { Object.assign(marketguardMessageBootstrap, {registrationStatus: registrationStatus}); document.getElementById('registrationNotice').innerHTML = mgBannerHTML + hiddenHTML; renderReactComponents(); } } function submitDeposit(ccId, paymentToken, amount) { cc.getDeposit(ccId, paymentToken, function(responseCode) { switch(responseCode) { case 0: registrationStatus = '2'; handleCCResponse(registrationStatus); break; case 1: registrationStatus = '1'; handleCCResponse(registrationStatus); break; case 2: agAlertDialog('You have exceeded the maximum number of attempts to add a credit card. Please contact us for further assistance.'); registrationStatus = '2'; handleCCResponse(registrationStatus); break; case 3: registrationStatus = '0'; handleCCResponse(registrationStatus); break; default: agAlertDialog('An error occured when processing your credit card. Please try again.'); registrationStatus = '-1'; handleCCResponse(registrationStatus); } }, null, {depositAmt: amount}); } handleAgEvent(bidderApproved, bidderPending, bidderDeclined, bidderError); jQuery('html').bind('SUBMIT_DEPOSIT_CHANGE_CC', function() { showChangeCCDeposit(); }); jQuery('html').bind('sendRegistrationEmail', function(event) { sendRegistrationEmail(event.detail.registrationStatus) }); jQuery('html').bind('SUBMIT_DEPOSIT', function(event) { submitDeposit(event.details.ccId, event.details.token, event.details.amount); });
Item Description: Translate description
Model: 8FG80U, 15,600#Year: 2013Hours: 8,255Item Location - City: Saint AugustineItem Location - State/Province: Florida
2013 Toyota 8FG80U, 15,600# Solid Tired Forklift, s/n 10088, LPG, Shuttle, with 212 in two-stage mast, 94 in forks, hyd side shift & ROPS, (Runs, Moves & Operates) (Jump To Start) (Per Seller: Mast Bearing Needs Replaced, Seller Suspects Internal Coolant Leak) (Reads 8,255 hours) NOTE: This unit is being sold AS IS/WHERE IS via Timed Auction and is located in Saint Augustine, FL. For more information & removal arrangements please contact Kevin Smith @ 816-244-1706. Load out by appointment only, Buyer/Hauler must present copy of paid invoice upon arrival. Purchaser acknowledges ALL lots must be removed within 5 business days of Auction, or a storage fee may be incurred. For load out and pick up information, please reference the hauler sheet sent out after purchase. (Buyer is responsible for removal. Assistance by consignor or JJ Kane Auctioneers is not assured.)
Unable to retrieve AutoCheck Summary Report, please try back later.
Summary Vehicle History Report below provided by AutoCheck.
AutoCheck® vehicle history reports deliver information on reported accidents, odometer rollback, lemon vehicles, branded titles and much more.
AutoCheck found record(s) for this
VIN:
Style/Body:
Engine:
Get the full report to learn more:
Know the exact vehicle you want? One report may be all you need.Single Report $24.99
Researching more than one vehicle? Run as many reports as you like for 21 daysUnlimited Reports for 21 Days $44.99