﻿function altVehicleImage(image) {
    image.onerror = null; // stop handling the error
    image.src = "/vehicle_images/Multiview/Transparent/320/2009DOD001a_320/2009DOD001a_320_01.png";
}

function altConsoleImage(image) {
    image.onerror = null; // stop handling the error
    image.src = '/vehicle_images/Multiview/Transparent/320/' + imageId + '/' + imageId + '_11.jpg';
}

function altGridImage(image) {
    image.onerror = null;
    image.src = "/images/noimage.png";

    // if we are on a quote page and the image isn't there, don't show any of column 3
    var column = document.getElementById('col3');
    if (column)
        column.style.display = 'none';
}