'; } 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 = '221006'; 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('221006'); } 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('221006'); 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
Lot Size: 0.14 acreArea: LandProperty Location - State: MichiganProperty Location - County: SaginawZoning: ResidentialAPN/Parcel ID: 09-11-5-05-2127-000Taxes: Under $2 per month
Build in this established neighborhood in Saginaw, Michigan! This lot is located near parks, and just 10 minutes from the Saginaw River! Along with Bay City and Midland, Saginaw forms the tri-city area. Learn all that Saginaw can offer you! Saginaw has a good balance of services and facilities for a city of its size and profile, including technology, higher education, healthcare, air service, cultural amenities, as well as being rich in history. This is Saginaw. We Build Opportunity! Saginaw is the gateway to recreational areas in northern Michigan. There is a small Old Town entertainment district across the Saginaw River and there are many interesting things to do there. 15 Best Things to do in Saginaw >> This diverse city has opportunities in abundance for both outdoor and indoor adventures. From iconic locales to theaters and museums, there's plenty of things to do in Saginaw, including catching a show at the Dow Event Center or the Temple Theatre, viewing artwork at the Saginaw Art Museum, or spending the day at the Children's Zoo and much more. Legal Description: LOTS 23 & 24 BLK C EASTLAWN. SEC 05 T11N R5E
Approximate Coordinates: 43°23'24.0"N 83°54'51.2"W
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