var editInd = "";
var selectedDeliveryOptions = [];
function writeToLayer(lyr, txt) {
$("#" + lyr).html(txt);
}
function initialiseOrderPage()
{
//display prices for options
$("#spanHivizPrice").html(hivizPrice);
$("#spanYforkPrice").html(yforkPrice);
$("#spanZipPrice").html(zipPrice);
$("#spanLockingPrice").html(lockingPrice);
//populate listboxes
populateListbox("manufacturerID", manufacturers, true);
populateListbox("delivery", pricePostages, true);
populateListbox("finName", finNames, true);
populateListbox("printingmanufacturerID", printingManufacturers, true);
populateListbox("printingstockimageID", stockImages, true);
populateListbox("printingcolourtype", printingColours, true);
populateListbox("printingcolourmain", colours, true);
populateListbox("printingcoloursecondary", colours, true);
populateListbox("printingcolourmain2", colours, true);
populateListbox("printingcoloursecondary2", colours, true);
populateListbox("printingfontcolourother", foilColours, true);
//quantity box
populateListbox("quantity", [["1", "1"],["2", "2"],["3", "3"],["4", "4"],["5", "5"],["6", "6"],["7", "7"],["8", "8"],["9", "9"],["10", "10"],["11", "11"],["12", "12"],["13", "13"],["14", "14"],["15", "15"],["16", "16"],["17", "17"],["18", "18"],["19", "19"],["20", "20"],["21", "21"],["22", "22"],["23", "23"],["24", "24"],["25", "25"],["26", "26"],["27", "27"],["28", "28"],["29", "29"],["30", "30"],["31", "31"],["32", "32"],["33", "33"],["34", "34"],["35", "35"],["36", "36"],["37", "37"],["38", "38"],["39", "39"],["40", "40"],["41", "41"],["42", "42"],["43", "43"],["44", "44"],["45", "45"],["46", "46"],["47", "47"],["48", "48"],["49", "49"],["50", "50"]], false);
//bind events
$("#manufacturerID").change(function() {updateStrokes();});
$("#stroke").change(function() {updateHps();});
$("#hp").change(function() {updateYears();updateTillerPrice();});
$("#year").change(function() {updateModels();});
$("#model").change(function() {updateLegs();hideMotorImage();displayMotorImage();updateCovers();});
$("#cover").change(function() {resetFieldsForCover();calculate();setPrintingCovers();displayOptions1();doColour2();});
$("#fin").change(function() {if ($("#fin").val() == "1") { displayFin(); } else { hideFin() } calculate();});
$("#finName").change(function() {showFinPhoto();});
$("#printConfirm").change(function() {hidePrintingOptions1();hideOptions2(); if ($("#printConfirm").val() == "1") { displayPrintingOptions1(); } else { hidePrintingOptions1(); $("#printing").val("0") }; if ($("#printConfirm").val() == "0") {displayPrintingNotice(); } else { hidePrintingNotice();} if ($("#printing").val() != "0") { displayOptions2(); } else { hideOptions2() } calculate();});
$("#printing").change(function() {hideOptions2(); if ($("#printing").val() != "0") { displayOptions2(); } else { hideOptions2() } calculate();});
$("#printhp").change(function() {calculate();});
$("#printingmanufacturerID").change(function() {$('.divML').css('visibility', 'hidden');$('.divML').css('height', '0px');$('#divML' + $(this).val()).css('visibility', 'visible');$('#divML' + $(this).val()).css('height', '');calculate();});
$("#printingstockimageID").change(function() {showStockImage();calculate();});
$("#printingcovers").change(function() {calculate();});
$("#printingcolourtype").change(function() {displayColourPrintingOptions();calculate();});
$("#printingcolourmain").change(function() {previewColour(this, 'pcm1');calculate();});
$("#printingcoloursecondary").change(function() {previewColour(this, 'pcs1');calculate();});
$("#printingcolourmain2").change(function() {previewColour(this, 'pcm2');calculate();});
$("#printingcoloursecondary2").change(function() {previewColour(this, 'pcs2');calculate();});
$("#printingfontcolour").change(function() {if (this.selectedIndex == 2) { $("#printingfontcolourothertbl").show(); } else { $("#printingfontcolourothertbl").hide(); } calculate();});
$("#printingfontcolourother").change(function() {previewFoilColour(this, 'pfc');calculate();});
$("#hiviz").change(function() {calculate();});
$("#yfork").change(function() {calculate();});
$("#zip").change(function() {calculate();});
$("#tiller").change(function() {calculate();});
$("#locking").change(function() {calculate();});
$("#delivery").change(function() {calculate();});
$("#quantity").change(function() {if ($("#discountValue").length > 0 && $("#code").val() != "" && $("#discountValue").val() != "") { applyDiscount(); } else { calculate(); } });
}
function displayColourPrintingOptions() {
if ($("#printingcolourtype").val() == "2") {
$("#printingColourTypeOptions").show();
}
else {
$("#printingColourTypeOptions").hide();
}
}
function populateListbox(lstID, vals, keep)
{
var html = "";
if (keep)
html = $("#" + lstID).html();
for (var i = 0; i < vals.length; i++)
html += "";
$("#" + lstID).html(html);
}
function resetFieldsForCover()
{
$("#leg").val("");
$("#legHeight").val("");
$("#trim").val("");
$("#pullStart").val("");
$("#electricStart").val("");
$("#internalFuel").val("");
$("#fin").val("");
$("#finName").val("");
$("#finA").val("");
$("#finB").val("");
$("#finC").val("");
$("#finD").val("");
$("#finE").val("");
$("#finF").val("");
$("#printing").val("0");
$("#printingname").val("");
$("#printingfont").val("");
$("#printingfontcolour").val("");
$("#printingfontcolourother").val("");
$("#printingmanufacturerID").val("");
$("#dealershipname").val("");
$("#printhp").val("");
$("#printingcovers").val("");
$("#printingcolourtype").val("");
$("#printingcolourmain").val("");
$("#printingcoloursecondary").val("");
$("#printingcolourmain2").val("");
$("#printingcoloursecondary2").val("");
$("#hiviz").val("");
$("#yfork").val("");
$("#zip").val("");
$("#tiller").val("");
$("#locking").val("");
previewColour($("#printingcolourmain"), 'pcm1');
previewColour($("#printingcoloursecondary"), 'pcs1');
previewColour($("#printingcolourmain2"), 'pcm2');
previewColour($("#printingcoloursecondary2"), 'pcs2');
previewFoilColour($("#printingfontcolourother"), 'pfc');
}
var imageColours = [];
var pantoneColours = [];
var colours = [];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "000000";
colours[colours.length] = ["17", "Black", 0.00];
imageColours[imageColours.length] = "Camo Image.jpg";
pantoneColours[pantoneColours.length] = "";
colours[colours.length] = ["27", "Camo (Not UV stable, needs UV spray)", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "0066CC";
colours[colours.length] = ["2", "Caribbean Blue", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "5b5c5e";
colours[colours.length] = ["6", "Charcoal/ Yamaha colour (P2)", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "202A44";
colours[colours.length] = ["23", "Navy Blue (P2)", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "DC1C13";
colours[colours.length] = ["25", "Red (P2)", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "CCCCCC";
colours[colours.length] = ["7", "Silver Light Grey/ Honda Colour (P2)", 0.00];
imageColours[imageColours.length] = "";
pantoneColours[pantoneColours.length] = "FFFFFF";
colours[colours.length] = ["22", "White P2 (Read Disclaimer)", 10.00];
function previewColour(lst, cdiv)
{
var colourToShow = "#FFFFFF";
var imageToShow = "";
if (lst.selectedIndex > 0)
colourToShow = "#" + pantoneColours[lst.selectedIndex - 1];
if (lst.selectedIndex > 0)
imageToShow = imageColours[lst.selectedIndex - 1];
//
// var ccdiv = document.getElementById(cdiv);
//
// ccdiv.style.background = colourToShow;
$("#" + cdiv).css("width", "200px");
$("#" + cdiv).css("height", "60px");
if (imageToShow != "")
{
$("#" + cdiv).css("background-repeat", "no-repeat");
$("#" + cdiv).css("background-image", "url('/saved/" + imageToShow + "')");
$("#" + cdiv).css("background-color", "");
}
else
{
$("#" + cdiv).css("background-image", "");
$("#" + cdiv).css("background-color", colourToShow);
}
}
function previewFoilColour(lst, cdiv)
{
var colourToShow = "#FFFFFF";
var imageToShow = "";
if (lst.selectedIndex > 0) {
colourToShow = "#" + pantoneFoilColours[lst.selectedIndex - 1];
if (colourToShow.startsWith("##")) {
colourToShow = colourToShow.substring(1);
}
}
if (lst.selectedIndex > 0)
imageToShow = imageFoilColours[lst.selectedIndex - 1];
//
// var ccdiv = document.getElementById(cdiv);
//
// ccdiv.style.background = colourToShow;
$("#" + cdiv).css("width", "200px");
$("#" + cdiv).css("height", "60px");
if (imageToShow != "")
{
$("#" + cdiv).css("background-repeat", "no-repeat");
$("#" + cdiv).css("background-image", "url('/saved/" + imageToShow + "')");
$("#" + cdiv).css("background-color", "");
}
else
{
$("#" + cdiv).css("background-image", "");
$("#" + cdiv).css("background-color", colourToShow);
}
}
var printingColours = [];
printingColours[printingColours.length] = ["1", "Black OR White"];
printingColours[printingColours.length] = ["2", "Colour Printing"];
var printingManufacturers = [];
printingManufacturers[printingManufacturers.length] = ["4", "Evinrude"];
printingManufacturers[printingManufacturers.length] = ["2", "Honda"];
printingManufacturers[printingManufacturers.length] = ["5", "Johnson"];
printingManufacturers[printingManufacturers.length] = ["7", "Mariner"];
printingManufacturers[printingManufacturers.length] = ["10", "Mercury"];
printingManufacturers[printingManufacturers.length] = ["21", "Oxe"];
printingManufacturers[printingManufacturers.length] = ["14", "Selva"];
printingManufacturers[printingManufacturers.length] = ["3", "Suzuki"];
printingManufacturers[printingManufacturers.length] = ["8", "Tohatsu"];
printingManufacturers[printingManufacturers.length] = ["1", "Yamaha"];
var fins = [];
var finNames = [];
fins[fins.length] = ["", 40.00];
finNames[finNames.length] = ["*NOT LISTED - add measurements below.", "*NOT LISTED - add measurements below."];
fins[fins.length] = ["Davis Whale Tail XL.jpg", 40.00];
finNames[finNames.length] = ["Davis Whale Tail (USA usually only)", "Davis Whale Tail (USA usually only)"];
fins[fins.length] = ["Fast Tail Med 40-125hp2.jpg", 40.00];
finNames[finNames.length] = ["Fast Tail Medium 40-125hp W 400mm L 475mm", "Fast Tail Medium 40-125hp W 400mm L 475mm"];
fins[fins.length] = ["LZ Hydrofoil Small.jpg", 35.00];
finNames[finNames.length] = ["Lalizas LZ , Does or Maritime Hydrofoils
Small (up to 50hp)", "Lalizas LZ , Does or Maritime Hydrofoils
Small (up to 50hp)"];
fins[fins.length] = ["LZ Hydrofoil.jpg", 35.00];
finNames[finNames.length] = ["Lalizas LZ Hydrofoils (Gull Winged Version)", "Lalizas LZ Hydrofoils (Gull Winged Version)"];
fins[fins.length] = ["LZ Hydrofoil Large.jpg", 35.00];
finNames[finNames.length] = ["Lalizas LZ or Maritime Hydrofoils
Large (over 50hp)", "Lalizas LZ or Maritime Hydrofoils
Large (over 50hp)"];
fins[fins.length] = ["Macs prop saver.jpg", 55.00];
finNames[finNames.length] = ["Mac's Prop Saver", "Mac's Prop Saver"];
fins[fins.length] = ["permatrim fins.jpg", 35.00];
finNames[finNames.length] = ["Permatrim", "Permatrim"];
fins[fins.length] = ["Pguard.jpg", 50.00];
finNames[finNames.length] = ["Prop Guards", "Prop Guards"];
fins[fins.length] = ["SE Sports 200.jpg", 35.00];
finNames[finNames.length] = ["SE Sports 200 - Part No. 2008-10
(Smaller Motors 8 - 40hp)", "SE Sports 200 - Part No. 2008-10
(Smaller Motors 8 - 40hp)"];
fins[fins.length] = ["SE Sports 300.jpg", 35.00];
finNames[finNames.length] = ["SE Sports 300 - Part No. 200812-16
(For motors 40hp up)", "SE Sports 300 - Part No. 200812-16
(For motors 40hp up)"];
fins[fins.length] = ["SE Sport 400.png", 35.00];
finNames[finNames.length] = ["SE Sports 400 - 40hp Onwards", "SE Sports 400 - 40hp Onwards"];
fins[fins.length] = ["Stingray Large.jpg", 35.00];
finNames[finNames.length] = ["Stingray Large", "Stingray Large"];
fins[fins.length] = ["Stingray Junior0.jpg", 35.00];
finNames[finNames.length] = ["Stingray Small (Junior)", "Stingray Small (Junior)"];
fins[fins.length] = ["XRIII.jpg", 35.00];
finNames[finNames.length] = ["Stingray XRIII", "Stingray XRIII"];
fins[fins.length] = ["Stingray Small - XRIII.jpg", 35.00];
finNames[finNames.length] = ["Stingray XRIII Jnr", "Stingray XRIII Jnr"];
fins[fins.length] = ["Trollamatic or Baffle measurements.jpg", 50.00];
finNames[finNames.length] = ["Trolling Baffles", "Trolling Baffles"];
var stockImages = [];
stockImages[stockImages.length] = ["Barra", "Barra1.jpg", 55.00, "2"];
stockImages[stockImages.length] = ["Coral Trout", "coral_trout with Copyright logo.jpg", 55.00, "12"];
stockImages[stockImages.length] = ["Brown Trout", "Brown Trout.jpg", 55.00, "3"];
stockImages[stockImages.length] = ["Dolphin Fish", "Dolphin Fish.jpg", 55.00, "4"];
stockImages[stockImages.length] = ["Large Mouth Bass", "Largemaouth Bass.gif", 55.00, "5"];
stockImages[stockImages.length] = ["Marlin", "Marlin & Popper.jpg", 55.00, "6"];
stockImages[stockImages.length] = ["Spanish Mackeral", "Spanish Mackeral.jpg", 55.00, "7"];
stockImages[stockImages.length] = ["Mean Red Fish", "Mean Red Fish Left.jpg", 55.00, "9"];
var imageFoilColours = [];
var pantoneFoilColours = [];
var foilColours = [];
imageFoilColours[imageFoilColours.length] = "Gold-Foil.jpg";
pantoneFoilColours[pantoneFoilColours.length] = "";
foilColours[foilColours.length] = ["Foil - Gold Glitter", "Foil - Gold Glitter"];
imageFoilColours[imageFoilColours.length] = "silver-Foil.jpg";
pantoneFoilColours[pantoneFoilColours.length] = "";
foilColours[foilColours.length] = ["Foil - Silver Glitter", "Foil - Silver Glitter"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "327468";
foilColours[foilColours.length] = ["OCA Aqua Green", "OCA Aqua Green"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "563A35";
foilColours[foilColours.length] = ["OCA Burgundy", "OCA Burgundy"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "0066CC";
foilColours[foilColours.length] = ["OCA Caribbean Blue", "OCA Caribbean Blue"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "5b5c5e";
foilColours[foilColours.length] = ["OCA Charcoal", "OCA Charcoal"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "1f2b48";
foilColours[foilColours.length] = ["OCA Dark Blue", "OCA Dark Blue"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "CC2C8B";
foilColours[foilColours.length] = ["OCA Dark Pink", "OCA Dark Pink"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "CCCCCC";
foilColours[foilColours.length] = ["OCA Lte Grey", "OCA Lte Grey"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "7FFF00";
foilColours[foilColours.length] = ["OCA Neon Green", "OCA Neon Green"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "#4B006E";
foilColours[foilColours.length] = ["OCA Purple", "OCA Purple"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "D30202";
foilColours[foilColours.length] = ["OCA Red", "OCA Red"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "ff7f00";
foilColours[foilColours.length] = ["OCA Rust Orange", "OCA Rust Orange"];
imageFoilColours[imageFoilColours.length] = "";
pantoneFoilColours[pantoneFoilColours.length] = "fff23f";
foilColours[foilColours.length] = ["OCA Yellow", "OCA Yellow"];
imageFoilColours[imageFoilColours.length] = "Matt Gold0.jpg";
pantoneFoilColours[pantoneFoilColours.length] = "";
foilColours[foilColours.length] = ["Shiny Gold", "Shiny Gold"];
imageFoilColours[imageFoilColours.length] = "Matt Silver0.jpg";
pantoneFoilColours[pantoneFoilColours.length] = "";
foilColours[foilColours.length] = ["Shiny Silver", "Shiny Silver"];
function showFinPhoto()
{
var frm = window.document.frmOrder;
var div = document.getElementById("finimage");
var img = document.getElementById("imgFin");
var hasPhoto = false;
if (frm.finName.selectedIndex > 0 && fins[frm.finName.selectedIndex - 1][0] != "")
hasPhoto = true;
if (hasPhoto)
{
img.src = "/saved/" + fins[frm.finName.selectedIndex - 1][0];
div.style.height = "200px";
div.style.visibility = "visible";
}
else
{
hideFinPhoto();
}
calculate();
}
function hideFinPhoto()
{
var div = document.getElementById("finimage");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function showStockImage()
{
var frm = window.document.frmOrder;
var div = document.getElementById("stockImageimage");
var img = document.getElementById("imgStockImage");
var hasPhoto = false;
if (frm.printingstockimageID.selectedIndex > 0 && stockImages[frm.printingstockimageID.selectedIndex - 1][1] != "")
hasPhoto = true;
if (hasPhoto)
{
img.src = "/saved/" + stockImages[frm.printingstockimageID.selectedIndex - 1][1];
div.style.height = "200px";
div.style.visibility = "visible";
}
else
{
hideStockImage();
}
calculate();
}
function hideStockImage()
{
var div = document.getElementById("stockImageimage");
div.style.height = "0px";
div.style.visibility = "hidden";
}
var manufacturers = [];
manufacturers[manufacturers.length] = ["4", "Evinrude"];
manufacturers[manufacturers.length] = ["2", "Honda"];
manufacturers[manufacturers.length] = ["5", "Johnson"];
manufacturers[manufacturers.length] = ["7", "Mariner"];
manufacturers[manufacturers.length] = ["10", "Mercury"];
manufacturers[manufacturers.length] = ["13", "Nissan"];
manufacturers[manufacturers.length] = ["21", "Oxe"];
manufacturers[manufacturers.length] = ["9", "Parsun"];
manufacturers[manufacturers.length] = ["14", "Selva"];
manufacturers[manufacturers.length] = ["3", "Suzuki"];
manufacturers[manufacturers.length] = ["8", "Tohatsu"];
manufacturers[manufacturers.length] = ["1", "Yamaha"];
var pricePostages = [];
var pricePostage1 = 0;
var pricePostage2 = 0;
var postageFirst = false;
var postageSecond = false;
var pricePostageCaption1 = "";
var pricePostageCaption2 = "";
pricePostage1 = 6.50;
pricePostage2 = 4.00;
pricePostageCaption1 = "Tracked UK delivery (Royal Mail) £6.50";
pricePostageCaption2 = "Tracked UK delivery (Royal Mail) £4.00";
for (var i = 0; i < selectedDeliveryOptions.length; i++)
{
if (selectedDeliveryOptions[i] == "66")
{
if (editInd == "") {
postageSecond = true;
}
else {
if (!postageFirst) {
postageFirst = true;
}
else if (i <= parseInt(editInd)) {
postageSecond = true;
}
}
}
}
if (postageSecond) {
if (pricePostage2 != 0) {
pricePostage1 = pricePostage2;
pricePostageCaption1 = pricePostageCaption2;
}
}
pricePostages[pricePostages.length] = [66, pricePostageCaption1, postageSecond];
pricePostage1 = 30.00;
pricePostage2 = 15.00;
pricePostageCaption1 = "EU - DHL or equivalent tracked - Mainland Europe Only £30.00";
pricePostageCaption2 = "EU - DHL or equivalent tracked - Mainland Europe Only £15.00";
for (var i = 0; i < selectedDeliveryOptions.length; i++)
{
if (selectedDeliveryOptions[i] == "89")
{
if (editInd == "") {
postageSecond = true;
}
else {
if (!postageFirst) {
postageFirst = true;
}
else if (i <= parseInt(editInd)) {
postageSecond = true;
}
}
}
}
if (postageSecond) {
if (pricePostage2 != 0) {
pricePostage1 = pricePostage2;
pricePostageCaption1 = pricePostageCaption2;
}
}
pricePostages[pricePostages.length] = [89, pricePostageCaption1, postageSecond];
var hivizPrice = "20.00";
var yforkPrice = "20.00";
var zipPrice = "15.00";
var lockingPrice = "15.00";
var cylinders = 0;
var motors = [];
motors[motors.length] = [138, 'JE15-2', 4, 2, 1993, 2012, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'J15-21.jpg', 5606,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp',15,'J15-22.jpg', 5607,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [151, 'JE50-2P', 4, 2, 1980, 2007, 2, 1, 0, 1, 1,
[
['40hp Pull Start',40,'', 5047,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp Pull Start',50,'', 5048,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [133, 'JE115-2OP', 4, 2, 1995, 2007, 4, 0, 1, 1, 1,
[
['90hp V4 Ocean Pro/Runner',90,'JE115-2OP.jpg', 10190,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp V4',90,'Evinrude 90hp.jpg', 10192,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp V4 Ocean Pro/Runner',115,'JE115-2OP0.jpg', 10191,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [3, 'E250-2', 4, 2, 2002, 2005, 6, 0, 1, 1, 1,
[
['200hp FICHT (white or blue)',200,'E250-2 (200).jpg', 6517,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp FICHT (white or blue)',225,'E250-2 (225).jpg', 6518,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp FICHT H.O. (white or blue)',225,'E250-2 (225)0.jpg', 6520,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp FICHT (white or blue)',250,'E250-2 (250).jpg', 6519,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [12, 'E175-2', 4, 2, 2001, 2005, 6, 0, 1, 1, 1,
[
['135 Direct Inj BRP Version',135,'E175-2 (all) DI not RAM.jpg', 8312,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['135 FICHT RAM ',135,'E175-2 (135)0.gif', 8309,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 Direct Inj BRP Version',150,'E175-2 (all) DI not RAM0.jpg', 8313,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 FICHT RAM',150,'E175-2 (150)0.gif', 8310,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 FICHT RAM',175,'E175-20.gif', 8311,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 Direct Inj BRP version',175,'E175-2 (all) DI not RAM1.jpg', 8314,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [15, 'E115-2', 4, 2, 2001, 2005, 4, 0, 1, 1, 1,
[
['75 Ficht Ram (blue or white in color)',75,'E115-2 (75).jpg', 7774,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90 Ficht Ram (blue or white in color)',90,'E115-2 (90).jpg', 7775,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Ficht Ram (blue or white in color)',115,'E115-2 (115)0.jpg', 7776,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 1, 0
]
motors[motors.length] = [154, 'JE70-2', 4, 2, 1986, 2004, 3, 1, 1, 1, 1,
[
['60hp Colors vary- Decals vary',60,'JE70-2 (Evin Grey).jpg', 7920,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['65hp Colors vary- Decals vary',65,'JE70-2 (Evin Grey)0.jpg', 7921,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp Colors vary- Decals vary',70,'JE70-2 (Evin Grey)1.jpg', 7922,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [158, 'JE8-2<2001', 4, 2, 1979, 2001, 2, 1, 0, 1, 1,
[
['6 Pull Start',6,'', 4799,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8 Pull Start',8,'', 4800,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [143, 'JE250-2', 4, 2, 2000, 2001, 6, 0, 1, 1, 1,
[
['200hp Fich RAM 3 grill vent',200,'JE250-2 (Evinrude Fich 3 grill).jpg', 8300,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Fich RAM 3 grill vent',225,'JE250-2 (Evinrude Fich 3 grill)0.jpg', 8301,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Fich RAM 3 grill vent',250,'JE250-2 (Evinrude Fich 3 grill)1.jpg', 8302,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [148, 'JE30-2', 4, 2, 1981, 2001, 2, 1, 1, 1, 1,
[
['20hp 2 Cylinder ',20,'JE30-2 (20).jpg', 5869,
['15\'\' (Short)','20\'\' (Long)']
]
,
['25hp 2 Cylinder',25,'JE30-2 (25).jpg', 5870,
['15\'\' (Short)','20\'\' (Long)']
]
,
['30hp 2 Cylinder',30,'JE30-2 (30).jpg', 5871,
['15\'\' (Short)','20\'\' (Long)']
]
,
['35hp 2 cylinder',35,'JE30-2 (30)2.jpg', 5872,
['15\'\' (Short)','20\'\' (Long)']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [16, 'E115-2<00', 4, 2, 1998, 2001, 4, 0, 1, 1, 1,
[
['75 FICHT (Vents at Front)',75,'E115-2LT 00.jpg', 8315,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90 FICHT (Vents at Front)',90,'E115-2LT 000.jpg', 8316,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 FICHT (Vents at Front)',115,'E115-2LT 001.jpg', 8317,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [149, 'JE35-2', 4, 2, 1995, 2001, 3, 1, 1, 1, 1,
[
['3 Cylinder',25,'JE35-21.jpg', 3078,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3 Cylinder',30,'JE35-22.jpg', 3079,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3 Cylinder',35,'JE35-24.jpg', 3080,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [156, 'JE70-2PS', 4, 2, 1986, 2001, 3, 1, 0, 1, 1,
[
['60hp Pull Start',60,'', 2086,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['65hp Pull Start',65,'', 2087,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['70hp Pull Start',70,'', 2088,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [146, 'JE250-2>2000', 4, 2, 1999, 2000, 6, 0, 1, 1, 1,
[
['200hp (Big air intake at front only)',200,'E250-2-LT99.jpg', 13363,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['225 (Big air intake at front only)',225,'E250-2-LT990.jpg', 13364,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['250 (Big air intake at front only)',250,'E250-2-LT991.jpg', 13365,
['20\'\' (Long)','25\'\' (XL) ']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [144, 'JE250-2 Venom', 4, 2, 1989, 2000, 6, 0, 1, 1, 1,
[
['200hp - Advise Model Number',200,'JE250-2 Venom2.jpg', 6615,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp - Advise Model Number',225,'JE250-2 Venom3.jpg', 6616,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp - Advise Model Number',250,'JE250-2 Venom4.jpg', 6617,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [13, 'JE175-2<00', 4, 2, 1998, 2000, 6, 0, 1, 1, 1,
[
['135 FICHT (Vents at Front)',135,'JE175-2 LN 00.jpg', 8318,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 FICHT (Vents at Front)',150,'JE175-2 LN 000.jpg', 8319,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 FICHT (Vents at Front)',175,'JE175-2 LN 001.jpg', 8320,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [140, 'JE175-2OP', 4, 2, 1991, 2000, 6, 0, 1, 1, 1,
[
['150hp Ocean Pro square shape',150,'J175-2OP (150).gif', 9806,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150HP Intruder',150,'150 Intruder.jpg', 9808,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp Ocean Pro square shape',175,'J175-2OP (150)0.gif', 9807,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [136, 'JE140-2', 4, 2, 1985, 2000, 4, 0, 1, 1, 1,
[
['120hp VRO (V4)',120,'JE140-22.jpg', 12110,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['130hp VRO (V4)',130,'JE140-23.jpg', 12111,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140hp VRO (V4)',140,'JE140-24.jpg', 12112,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [10, 'E250-2<99', 4, 2, 1998, 1999, 6, 0, 1, 1, 1,
[
['200 RAM INJECTION (Vents at Front)',200,'E250-2 LT 99.jpg', 8321,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 RAM INJECTION (Vents at Front)',225,'E250-2 LT 990.jpg', 8322,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 RAM INJECTION (Vents at Front)',250,'E250-2 LT 991.jpg', 8323,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [145, 'JE250-2<1998', 4, 2, 1989, 1999, 6, 0, 1, 1, 1,
[
['200hp (Vents top & Rear see image)',200,'JE250-2 top rear.jpg', 6621,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp (Vents top, rear & Front see image)',200,'JE250-2 Front side rear.jpg', 6624,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp (Vents top & Rear see image)',225,'JE250-2 top rear0.jpg', 6622,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp (Vents top, rear & Front see image)',225,'JE250-2 Front side rear0.jpg', 6625,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp (Vents top & Rear see image)',250,'JE250-2 top rear1.jpg', 6623,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp (Vents top, rear & Front see image)',250,'JE250-2 Front side rear1.jpg', 6626,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [135, 'JE115-2VRO', 4, 2, 1982, 1996, 4, 0, 1, 1, 1,
[
['85hp VRO',85,'JE115-2VRO (Evin).jpg', 6562,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['90hp VRO',90,'JE115-2VRO (90).jpg', 6563,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['110hp VRO',110,'JE115-2VRO (110).gif', 6565,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp VRO',115,'JE115-2VRO (Evin)0.jpg', 6564,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [139, 'JE15-2<1992', 4, 2, 1970, 1992, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'JE15-2 LT 1992.jpg', 3183,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp',15,'JE15-2 LT 19920.jpg', 3184,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [141, 'JE185-2', 4, 2, 1986, 1990, 6, 0, 1, 1, 1,
[
['150hp',150,'JE185-2.jpg', 8442,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['165hp',165,'JE185-20.jpg', 8443,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp ',175,'JE185-21.jpg', 8444,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['185hp',185,'JE185-22.jpg', 8445,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [152, 'JE60-2<1985', 4, 2, 1974, 1985, 2, 1, 1, 1, 1,
[
['50hp 2 Cylinders',50,'JE60-2 LT 1985 (Evin)1.jpg', 2936,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['55hp 2 Cylinders',55,'JE60-2 LT 1985 (Evin)2.jpg', 2937,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['60hp 2 Cylinders',60,'JE60-2 LT 1985 (Evin)3.jpg', 2938,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [137, 'JE140-2<85', 4, 2, 1969, 1985, 4, 0, 1, 1, 1,
[
['85 VRO',85,'JE140-2 LT 855.jpg', 5402,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115 VRO',115,'JE140-2 LT 856.jpg', 5403,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['135hp VRO',135,'JE140-2 LT 859.jpg', 5405,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140 VRO',140,'JE140-2 LT 857.jpg', 5404,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [155, 'JE70-2<1985', 4, 2, 1974, 1985, 3, 1, 1, 1, 1,
[
['60hp 3 Cylinder - Decals will vary',60,'JE70-2LT 1985 (Evin)1.gif', 2953,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['65hp 3 Cylinder - Decals will vary',65,'JE70-2LT 1985 (Evin)2.gif', 2954,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp 3 Cylinder - Decals will vary',70,'JE70-2LT 1985 (Evin)3.gif', 2955,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [142, 'JE235-2<85', 4, 2, 1970, 1985, 6, 0, 1, 1, 1,
[
['165hp VRO',165,'JE 185-2 LT 854.jpg', 6604,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp VRO',175,'JE 185-2 LT 855.jpg', 6605,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['185hp VRO',185,'JE 185-2 LT 856.jpg', 6606,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp VRO',200,'JE 185-2 LT 857.jpg', 6607,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp VRO',225,'JE 185-2 LT 858.jpg', 6608,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [153, 'JE7.5-2<1983', 4, 2, 1970, 1983, 2, 1, 0, 1, 1,
[
['7.5hp',7.5,'', 1966,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [161, 'JES70-4', 4, 4, 1998, 2025, 4, 0, 1, 1, 1,
[
['60hp',60,'JES70-4(70).gif', 5043,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp',70,'JES70-4(70).bmp', 5044,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [441, 'E200-2 G2', 4, 2, 2014, 2025, 6, 0, 0, 0, 0,
[
['G2 - 2.7l C150 HO ==NOT AVAILABLE==',150,'E200-2 G24.jpg', 9114,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['G2 - 2.7l C150 ==NOT AVAILABLE==',150,'E200-2 G23.jpg', 9113,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['G2 - 2.7l C175 ==NOT AVAILABLE==',175,'E200-2 G25.jpg', 9115,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['G2 - 2.7l C200 ==NOT AVAILABLE==',200,'E200-2 G26.jpg', 9116,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [373, 'M6-4', 4, 4, 2012, 2025, 1, 1, 0, 1, 1,
[
['4hp E4R4',4,'M6-4(4).jpg', 9921,
['15\'\' (Short)','Unsure - use overall height']
]
,
['4hp E4RL4',4,'M6-4(4)0.jpg', 9925,
['20\'\' (Long)','Unsure - use overall height']
]
,
['6hp Model E6RX4',6,'M6-41.jpg', 9924,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp Model E6R4',6,'M6-4.jpg', 9922,
['15\'\' (Short)','Unsure - use overall height']
]
,
['6hp Model E6RL4',6,'M6-40.jpg', 9923,
['20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [297, 'E30-2ET', 4, 2, 2009, 2025, 2, 1, 1, 1, 1,
[
['15 E-Tec HO',15,'E30-2ET (15).jpg', 12190,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['25 E-Tec',25,'E30-2ET (25).jpg', 12188,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30 E-Tec',30,'E30-2ET (30).jpg', 12189,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [369, 'M3.5-4', 4, 4, 2012, 2025, 1, 1, 0, 1, 1,
[
['3.5hp',3.5,'E3.5-4 (m3.5-4).gif', 9920,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [416, 'T9.8-4', 4, 4, 2012, 2025, 2, 1, 1, 1, 1,
[
['9.8hp',9.8,'Evinrude 9.8hp.jpg', 9926,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [307, 'E130-2ET', 4, 2, 2008, 2025, 4, 0, 0, 1, 1,
[
['115hp E-Tec HO',115,'E130-2ET HO (115)0.jpg', 12195,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp E-Tec same high cowlng as HO',115,'Screenshot_2013-09-01-14-13-21-1.png', 12196,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['130hp E-Tec',130,'E130-2ET (130).jpg', 12194,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [442, 'E300-2 G2', 4, 2, 2014, 2025, 6, 0, 0, 0, 0,
[
['G2 - 3.4L E200 HO ==NOT AVAILABLE==',200,'E300-2 G2.jpg', 9122,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['G2 - 3.4L E225 HO ==NOT AVAILABLE==',225,'E300-2 G20.jpg', 9123,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['G2 - 3.4L E250 ==NOT AVAILABLE==',250,'E300-2 G21.jpg', 9124,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['G2 - 3.4L E250 HO ==NOT AVAILABLE==',250,'E300-2 G22.jpg', 9125,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['G2 - 3.4L E300 ==NOT AVAILABLE==',300,'E300-2 G23.jpg', 9126,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [160, 'JES50-4', 4, 4, 1999, 2025, 3, 0, 1, 1, 1,
[
['40hp ',40,'', 5222,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp',50,'', 5223,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [157, 'JE8-2', 4, 2, 2001, 2025, 2, 1, 0, 1, 1,
[
['6hp',6,'JE8-2(6).jpg', 3588,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp',8,'JE8-2(8).jpg', 3589,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [150, 'JE50-2', 4, 2, 1996, 2025, 2, 0, 1, 1, 1,
[
['40hp ',40,'', 1987,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['50hp',50,'', 1988,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [147, 'JE3.5-2', 4, 2, 1995, 2025, 1, 0, 0, 1, 1,
[
['3.0hp',3,'JE3.5-2 (all)0.jpg', 4411,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'JE3.5-2 (all).jpg', 4410,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [2, 'E300-2ET', 4, 2, 2004, 2025, 6, 0, 0, 1, 1,
[
['200hp E-Tec (3.3Litre) High Output',200,'E300-2ET (200).gif', 12202,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp E-Tec (3.3Litre) ',225,'E300-2ET (225).gif', 12203,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp E-Tec (3.3Litre) High Output',225,'E300-2ET (225)0.gif', 12206,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp E-Tec (3.3Litre) ',250,'E300-2ET (250).gif', 12204,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300hp E-Tec (3.3Litre) ',300,'E300-2ET (300).jpg', 12205,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [18, 'E60-2ET', 4, 2, 2003, 2025, 2, 1, 1, 1, 1,
[
['40 E-Tec (No Pull Start)',40,'EVINRUDE_ETEC40_BLUE.jpg', 12207,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50 E-Tec (No Pull Start)',50,'EVINRUDE_ETEC50_BLUE.jpg', 12208,
['20\'\' (Long)','Unsure - use overall height']
]
,
['60 E-Tec (No Pull Start)',60,'EVINRUDE_ETEC50_BLUE0.jpg', 12209,
['20\'\' (Long)','Unsure - use overall height']
]
,
['65 E-Tec (Pontoon series No Pull Start)',65,'E60-2ET (65).gif', 12210,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [17, 'E90-2ET', 4, 2, 2003, 2025, 3, 0, 0, 1, 1,
[
['75hp E-Tec',75,'E90-2ET (75) Bl n Wh.gif', 12211,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp E-Tec',90,'E90-2ET (90) Bl n Wh.gif', 12212,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [14, 'E115-2ET', 4, 2, 2005, 2025, 4, 0, 1, 1, 1,
[
['90HO',90,'90HO.jpg', 12193,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 E-Tec White',115,'E115-2ET (115).jpg', 12192,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 E-Tec Blue',115,'EVINRUDE_ETEC115_BLUE0.jpg', 12191,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [11, 'E200-2ET', 4, 2, 2005, 2025, 6, 0, 1, 1, 1,
[
['135 HO White or Navy cowl (2.6L) E-Tec',135,'E200-2ET (135) HO Blue.png', 12201,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 HO White or Navy cowl (2.6L) E-Tec',150,'E200-2ET (150)0.gif', 12200,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 White or Navy cowl (2.6L) E-Tec',150,'E200-2ET (150).gif', 12197,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 White or Navy cowl (2.6L) E-Tec',175,'E200-2ET (175).gif', 12198,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200 White or Navy cowl (2.6L) E-Tec',200,'E200-2ET (200).gif', 12199,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [22, 'H100-4V', 2, 4, 2007, 2018, 4, 0, 1, 1, 1,
[
['BF75 with or without tiller older model',75,'H90-4V (75hp) with & without tiller.jpg', 9886,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF80 with or without tiller older model',80,'H100-4V (80).jpg', 9889,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF90with or without tiller older model',90,'H90-4V (90hp) with & without tiller.jpg', 9887,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF100 with or without tiller older model',100,'H100-4V (100).jpg', 9888,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [25, 'H50-4', 2, 4, 1990, 2010, 3, 0, 1, 1, 1,
[
['BF35 (Carby Model Old Shape)',35,'BF35.jpg', 12729,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF40 (Carby Model Old Shape)',40,'H50-4 (40hp)0.jpg', 12727,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF45 (Carby Model Old Shape)',45,'H50-4 (45hp).jpg', 12728,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF50 (Carby Model Old Shape)',50,'H50-4 (50hp)0.jpg', 12726,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [23, 'H90-4', 2, 4, 1998, 2007, 4, 0, 1, 1, 1,
[
['BF 75 Older Shape',75,'H90-4 (75hp)0.jpg', 12725,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['BF 90 Older Shape',90,'H90-4 (90hp)0.jpg', 12724,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [21, 'H130-4', 2, 4, 1998, 2005, 4, 0, 1, 1, 1,
[
['BF115 (Older Shape)',115,'H130-4 (115hp).jpg', 11941,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF130 (Older Shape)',130,'H130-4 (130hp).jpg', 11942,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [28, 'H15-4<02', 2, 4, 1997, 2002, 2, 1, 1, 1, 1,
[
['8hp (Square/Old Shape)',8,'H15-4old (8hp).jpg', 9790,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['10hp (Square/Old Shape)',10,'H15-4old (10hp).jpg', 9791,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp (Square/Old Shape)',15,'H15-4old (15hp).jpg', 9792,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [30, 'H10-4<00', 2, 4, 1970, 2000, 2, 1, 1, 1, 1,
[
['6hp (Older Square Shape)',6,'H15-4old (6hp).jpg', 9783,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['8hp (Older Square Shape)',8,'H15-4old (8hp)0.jpg', 9781,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['10hp (Older Square Shape)',10,'H15-4old (10hp)0.jpg', 9782,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [443, 'H250-4V 19', 2, 4, 2019, 2025, 6, 0, 0, 1, 1,
[
['BF175D (3.6L V6 - 2019 release)',175,'BF175D3.jpg', 11452,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['BF200D (3.6L V6 - 2019 release)',200,'200d_leftcnr_newweb.png', 11451,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['BF225D (3.6L V6 - 2019 release)',225,'225d_rightcnr_newweb.png', 11450,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['BF250D (3.6L V6 - 2019 release)',250,'250d_rightcnr_newweb.png', 11449,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [425, 'H50-4D', 2, 4, 2017, 2025, 3, 0, 1, 1, 1,
[
['BF40 DK4 New 2017 Current Model',40,'H50-4D (40&50).png', 8279,
['20\'\' (Long)','Unsure - use overall height']
]
,
['BF50 DK4 New 2017 Current Model',50,'H50-4D (40&50)0.png', 8280,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [424, 'H100-4A', 2, 4, 2017, 2025, 4, 0, 0, 1, 1,
[
['BF75 DK4 - NEW Model Late 2017',75,'BF75 2017.jpg', 9882,
['20\'\' (Long)','Unsure - use overall height']
]
,
['BF80 AK1 - NEW Model Late 2017',80,'BF80 2017.jpg', 9883,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF90 DK5 - NEW Model Late 2017',90,'BF90 2017.jpg', 9884,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF100 AK1 - NEW Model Late 2017',100,'BF100 2017.jpg', 9885,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [467, 'H150-4 22', 2, 4, 2022, 2025, 4, 0, 0, 1, 1,
[
['BF115 VTEC (2.4L 16V, 2022 design)',115,'BF115.jpg', 12113,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF135 VTEC (2.4L 16V, 2022 design)',135,'BF135.jpg', 12116,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF140 VTEC (2.4L 16V, 2022 design)',140,'BF140.jpg', 12114,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF150 VTEC (2.4L 16V, 2022 design)',150,'BF150.jpg', 12115,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [423, 'H6-4', 2, 4, 2017, 2025, 1, 0, 0, 1, 1,
[
['BF4D- New from 2017',4,'BF4 2017.jpg', 9423,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['BF5D- New from 2017',5,'BF5 2017.jpg', 9424,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['BF6A- New from 2017',6,'BF6 2017.jpg', 9425,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [356, 'H250-4V', 2, 4, 2011, 2025, 6, 0, 1, 1, 1,
[
['250hp V Tec (Old shape model)',250,'H250-4V.jpg', 10561,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [315, 'H60-4V', 2, 4, 2009, 2025, 3, 0, 1, 1, 1,
[
['BFP 60A Power Thrust Leg (Current Model)',60,'H60-4v PT.png', 13377,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF 60A (Current Model)',60,'H60-4v(60).png', 13376,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [32, 'H2-4', 2, 4, 1998, 2025, 1, 1, 0, 1, 0,
[
['BF 2 (Air Cooled)',2,'H2-4 (2hp).jpg', 9794,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['BF 2.3 (Air Cooled)',2.3,'H2-4 (2.3hp).jpg', 9793,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [31, 'H5-4', 2, 4, 1998, 2025, 1, 1, 0, 1, 1,
[
['BF 4',4,'H5-4 (4hp).jpg', 9795,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['BF 5',5,'H5-4 (5hp)0.jpg', 9796,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [19, 'H225-4V', 2, 4, 1998, 2025, 6, 0, 1, 1, 1,
[
['BF 175 (Check shape and air intakes)',175,'H225-4V (175hp).jpg', 9546,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF 200 (Check shape and air intakes)',200,'H225-4V (200hp).jpg', 9547,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF 225 V-Tec (Check shape and air intakes)',225,'H225-4V (225hp).jpg', 9548,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [29, 'H10-4', 2, 4, 2001, 2025, 2, 1, 1, 1, 1,
[
['BF8 (Current Model)',8,'H10-4 (8hp).jpg', 8328,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF9.9 (Current Model)',9.9,'H10-4 (9.9hp).jpg', 8330,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF10 (Current Model)',10,'H10-4 (10hp).jpg', 8329,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [27, 'H20-4', 2, 4, 2002, 2025, 3, 1, 1, 1, 1,
[
['BF15 (Current Model)',15,'H20-4 (15hp).jpg', 10525,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF20 (Current Model)',20,'H20-4 (20hp).jpg', 10526,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [26, 'H30-4', 2, 4, 1996, 2025, 3, 1, 1, 1, 1,
[
['BF25 (Current model With or without tiller)',25,'H30-4 (25hp).jpg', 12292,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['BF30 (Current model With or without tiller)',30,'H30-4 (30hp).jpg', 12293,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [24, 'H50-4V', 2, 4, 2008, 2025, 3, 0, 1, 1, 1,
[
['BF40',40,'H50-4V (40hp).jpg', 8343,
['20\'\' (Long)','Unsure - use overall height']
]
,
['BF 50 ',50,'H50-4V (50hp).jpg', 8344,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [20, 'H150-4V', 2, 4, 2003, 2025, 4, 0, 1, 1, 1,
[
['BF115 V-Tec',115,'H150-4V (115hp).jpg', 11897,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF135 V-Tec',135,'H150-4V (135hp).jpg', 11895,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF150 V-Tec',150,'H150-4V (150hp).jpg', 11896,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [480, 'H350-4 24', 2, 4, 2024, 2025, 8, 0, 0, 0, 1,
[
['BF300 V8 5.0L White or Grey',300,'BF300 V8.png', 13669,
['25\'\' (XL) ','30\'\' (Ultra Long) ','35\'\' (Ultra Ultra Long)']
]
,
['BF350 V8 5.0L White or Grey',350,'H350-4 24.png', 13668,
['25\'\' (XL) ','30\'\' (Ultra Long) ','35\'\' (Ultra Ultra Long)']
]
],
0, '', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [165, 'JS15-4', 5, 4, 1997, 2015, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'JS15-4 (9.9).jpg', 7619,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp',15,'JS15-4 (15).jpg', 7620,
['15\'\' (Short)','20\'\' (Long)']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [168, 'JS30-4', 5, 4, 2000, 2014, 3, 1, 1, 1, 1,
[
['25hp',25,'JS30-41.jpg', 6270,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp',30,'JS30-40.jpg', 6271,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [56, 'JE15-2', 5, 2, 1993, 2012, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'J15-23.jpg', 5604,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp',15,'J15-24.jpg', 5605,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [167, 'JS250-4', 5, 4, 2003, 2012, 6, 0, 0, 1, 1,
[
['200hp V6',200,'JS250-4 (200).jpg', 10643,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp V6',225,'JS250-4 (225).jpg', 10644,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp V6',250,'JS250-4 (250).jpg', 10645,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [159, 'JES50-4', 5, 4, 1999, 2010, 3, 0, 1, 1, 1,
[
['40hp ',40,'JES50-4 (40).jpg', 4905,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp',50,'Johnson 50hp 4stk0.jpg', 4906,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [54, 'JE30-2', 5, 2, 1981, 2007, 2, 1, 1, 1, 1,
[
['20hp 2 Cylinder',20,'JE30-2 (20)0.jpg', 5861,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp 2 Cylinder',25,'JE30-2 (25)0.jpg', 5862,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp 2 Cylinder',30,'JE30-2 (30)0.jpg', 5863,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['35hp 2 cylinder (same as 30hp)',35,'JE30-2 (30)1.jpg', 5864,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [45, 'JE115-2OP', 5, 2, 1995, 2007, 4, 0, 1, 1, 1,
[
['90hp Ocean Pro/Runner',90,'JE115-2 OP (ocean runner)2.jpg', 6558,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp Ocean Pro/Runner',115,'JE115-2 OP (ocean runner)3.jpg', 6559,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [51, 'JE50-2P', 5, 2, 1980, 2007, 2, 1, 0, 1, 1,
[
['40hp Pull Start',40,'', 5045,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['50hp Pull Start',50,'', 5046,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [201, 'JS175-4', 5, 4, 2005, 2007, 6, 0, 1, 1, 1,
[
['150hp',150,'JS175-4 (150)0.jpg', 6644,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp',175,'JS175-4 (175).jpg', 6645,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [43, 'J135-2', 5, 2, 2000, 2006, 4, 0, 1, 1, 1,
[
['135hp Ocean Pro',135,'Johnson 135hp Blk n Wht Ocean Runner.jpg', 8289,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [48, 'JE70-2', 5, 2, 1986, 2004, 3, 1, 1, 1, 1,
[
['60hp Colors vary- Decals vary',60,'JE70-2 (Johnson White).jpg', 2977,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['65hp Colors vary- Decals vary',65,'JE70-2 (Johnson White)0.jpg', 2978,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp Colors vary- Decals vary',70,'JE70-2 (Johnson White)1.jpg', 2979,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [314, 'JE15-4', 5, 4, 1980, 2003, 2, 1, 1, 1, 1,
[
['8hp',8,'', 3891,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['9.9hp',9.9,'', 3892,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp',15,'', 3893,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [9, 'JE250-2', 5, 2, 2000, 2001, 6, 0, 1, 1, 1,
[
['200hp Johnson Ocean Pro',200,'J250-2 (200-225) blk n wht.jpg', 8306,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp Johnson/ BRP',200,'JE250-2 (200).gif', 8303,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Johnson Ocean Pro',225,'J250-2 (200-225) blk n wht0.jpg', 8307,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Johnson/ BRP',225,'JE250-2 (225).gif', 8304,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Johnson/ BRP',250,'JE250-2 (250).gif', 8305,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Johnson Ocean Pro',250,'JE250-2 (250).jpg', 8308,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [53, 'JE35-2', 5, 2, 1995, 2001, 3, 1, 1, 1, 1,
[
['25hp 3 Cylinder',25,'JE35-25.jpg', 5146,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp 3 Cylinder',30,'JE35-26.jpg', 5147,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['35hp 3 Cylinder',35,'JE35-27.jpg', 5148,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [59, 'JE8-2<2001', 5, 2, 1979, 2001, 2, 1, 0, 1, 1,
[
['6 Pull Start',6,'', 4797,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8 Pull Start',8,'', 4798,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [49, 'JE70-2PS', 5, 2, 1986, 2001, 3, 1, 0, 1, 1,
[
['60hp Pull Start',60,'', 2083,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['65hp Pull Start',65,'', 2084,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['70hp Pull Start',70,'', 2085,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [39, 'JE175-2OP', 5, 2, 1991, 2001, 6, 0, 1, 1, 1,
[
['150hp Ocean Pro square shape',150,'J175-2OP (150).gif', 5168,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp Ocean Pro square shape',175,'JE175-2OP jna(175)0.jpg', 5169,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [41, 'JE140-2', 5, 2, 1986, 2000, 4, 0, 1, 1, 1,
[
['120hp VRO',120,'JE140-25.jpg', 6570,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['130hp VRO',130,'JE140-26.jpg', 6571,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140hp VRO',140,'JE140-27.jpg', 6572,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [33, 'JE250-2 Venom', 5, 2, 1989, 2000, 6, 0, 1, 1, 1,
[
['200hp - Advise Model Number',200,'JE250-2 Venom5.jpg', 6618,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp - Advise Model Number',225,'JE250-2 Venom6.jpg', 6619,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp - Advise Model Number',250,'JE250-2 Venom7.jpg', 6620,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [306, 'JE175-2<00', 5, 2, 1998, 2000, 6, 0, 1, 1, 1,
[
['135 FICHT (Vents at Front)',135,'JE175-2 LT 001.jpg', 6582,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 FICHT (Vents at Front)',150,'JE175-2 LT 00.jpg', 6580,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 FICHT (Vents at Front)',175,'JE175-2 LT 000.jpg', 6581,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [394, 'JE250-2<1998', 5, 2, 1989, 1999, 6, 0, 1, 1, 1,
[
['200hp (Vents top, rear & Front see image)',200,'JE250-2 Front side rear.jpg', 6629,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp (Vents top & Rear see image)',200,'JE250-2 top rear.jpg', 6631,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp (Vents top, rear & Front see image)',225,'JE250-2 Front side rear0.jpg', 6628,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp (Vents top & Rear see image)',225,'JE250-2 top rear0.jpg', 6632,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp (Vents top & Rear see image)',250,'JE250-2 top rear1.jpg', 6630,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp (Vents top, rear & Front see image)',250,'JE250-2 Front side rear1.jpg', 6627,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [46, 'JE115-2VRO', 5, 2, 1982, 1996, 4, 0, 1, 1, 1,
[
['85hp VRO',85,'JE115-2VRO (90).gif', 6566,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['90hp VRO',90,'JE115-2VRO (90)0.gif', 6567,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['110hp VRO',110,'', 6569,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp VRO',115,'JE115-2VRO (John)1.jpg', 6568,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [57, 'JE15-2<1992', 5, 2, 1970, 1992, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'JE15-2 LT 19921.jpg', 3185,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['15hp',15,'JE15-2 LT 19922.jpg', 3186,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [36, 'JE185-2', 5, 2, 1986, 1990, 6, 0, 1, 1, 1,
[
['150hp VRO',150,'JE 185-2 LT85.jpg', 6586,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['165hp VRO',165,'JE 185-2 LT850.jpg', 6587,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp VRO',175,'JE 185-2 LT851.jpg', 6588,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['185hp VRO',185,'JE 185-2 LT852.jpg', 6589,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [313, 'JE235-2<85', 5, 2, 1970, 1985, 6, 0, 1, 1, 1,
[
['165hp VRO',165,'JE 185-2 LT 854.jpg', 6603,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp VRO',175,'JE 185-2 LT 855.jpg', 6601,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['185hp VRO',185,'JE 185-2 LT 856.jpg', 6602,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp VRO',200,'JE 185-2 LT 857.jpg', 6600,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['235hp VRO',235,'JE 185-2 LT 858.jpg', 6599,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [37, 'JE185-2<85', 5, 2, 1970, 1985, 6, 0, 1, 1, 1,
[
['165hp VRO',165,'JE185-2LT85.jpg', 6594,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp VRO',175,'JE 185-2 LT854.jpg', 6595,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['185hp VRO',185,'JE 185-2 LT855.jpg', 6596,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp VRO',200,'JE235-2 LT851.jpg', 6597,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['225hp VRO',225,'JE235-2 LT852.jpg', 6598,
['20\'\' (Long)','25\'\' (XL) ']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [303, 'JE70-2<1985', 5, 2, 1974, 1985, 3, 1, 1, 1, 1,
[
['60hp 3 Cylinder - Decals will vary',60,'JE70-21.gif', 8183,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['65hp 3 Cylinder - Decals will vary',65,'JE70-20.gif', 8182,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp 3 Cylinder - Decals will vary',70,'JE70-2.gif', 8181,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['75hp 3 Cylinder (Sea Horse) - Decals will vary',75,'JE70-2-LT 1985 (75).gif', 8184,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['75hp 3 Cylinder - Stinger',75,'JE70-2 -LT1985 Stinger 75hp.jpg', 8185,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [302, 'JE60-2<1985', 5, 2, 1974, 1985, 2, 1, 1, 1, 1,
[
['50hp 2 Cylinders',50,'JE60-2 LT 1985 (2 Cyl)1.gif', 2944,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['55hp 2 Cylinders',55,'JE60-2 LT 1985 (2 Cyl)0.gif', 2943,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['60hp 2 Cylinders',60,'JE60-2 LT 1985 (2 Cyl).gif', 2942,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [42, 'JE140-2<85', 5, 2, 1969, 1985, 4, 1, 1, 1, 1,
[
['85hp VRO',85,'JE140-2 LT 852.jpg', 11833,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp VRO',115,'JE140-VRO-(115).jpg', 11834,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['135hp VRO',135,'JE140-2 LT 858.jpg', 11836,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140hp VRO',140,'JE140-VRO-(140).jpg', 11835,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [60, 'JE7.5-2<1983', 5, 2, 1970, 1983, 2, 1, 0, 1, 1,
[
['7.5hp',7.5,'', 2076,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [52, 'JE50-2', 5, 2, 1990, 2025, 2, 0, 1, 1, 1,
[
['40hp Electric Start Only',40,'JE50-2 (40).jpg', 8045,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['50hp Electric Start Only',50,'JE50-2.jpg', 8046,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [58, 'JE8-2', 5, 2, 2001, 2025, 2, 1, 0, 1, 1,
[
['6hp',6,'JE8-2.jpg', 3262,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp',8,'JE8-20.jpg', 3263,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [205, 'JS2.5-4', 5, 4, 1998, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'JS2.5-4.jpg', 2121,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [203, 'JS6-4', 5, 4, 1998, 2025, 1, 1, 0, 1, 1,
[
['4hp',4,'JS6-4 (4).jpg', 2746,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp',6,'JS6-4 (6).jpg', 2747,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [162, 'JES70-4', 5, 4, 1998, 2025, 4, 0, 0, 1, 1,
[
['60',60,'JES70-4 (60).jpg', 4793,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70',70,'JES70-4.jpg', 4794,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [38, 'J175-2', 5, 2, 2000, 2025, 6, 0, 1, 1, 1,
[
['150hp Johnson Ocean Pro',150,'Johnson 175-2 Blk n Wht Ocean Runner.jpg', 12578,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp BRP Variant',150,'J175-2 (150).gif', 12576,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp Johnson Ocean Pro',175,'Johnson 175-2 Blk n Wht Ocean Runner0.jpg', 12579,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp BRP Variant',175,'J175-2 (175).gif', 12577,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [61, 'JE3.5-2', 5, 2, 1995, 2025, 1, 1, 0, 1, 1,
[
['3.0hp',3,'JE3.5-2 (3.0).jpg', 3909,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'JE3.5-2 (3.5).jpg', 3908,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Johnson ID plate0.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [44, 'J115-2', 5, 2, 2000, 2025, 4, 0, 1, 1, 1,
[
['75hp BRP Varient',75,'J115-2 BRP Varient.jpg', 8284,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp BRP Varient',90,'J115-2 BRP Varient0.jpg', 8285,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp Johnson Ocean Pro',90,'J115-2 Black n White Ocean Pro Johnson.jpg', 8287,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp BRP Varient',115,'J115-2 BRP Varient1.jpg', 8286,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp Johnson Ocean Pro',115,'J115-2 Black n White Ocean Pro Johnson0.jpg', 8288,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [163, 'JS115-4', 5, 4, 2003, 2025, 4, 0, 1, 1, 1,
[
['90',90,'JS115-4 (90).jpg', 9127,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['100',100,'JS115-40.jpg', 9129,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['115',115,'JS115-4.jpg', 9128,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [164, 'JS140-4', 5, 4, 2003, 2025, 4, 0, 1, 1, 1,
[
['140hp',140,'JS140-4.jpg', 7033,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Johnson ID plate0.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [460, 'M9.9-4 19', 7, 4, 2017, 2024, 2, 1, 1, 1, 1,
[
['8hp 209cc Version (CAUTION CHECK YOUR VERSION)',8,'Mariner 8hp.jpg', 13612,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp 209cc Version (CAUTION CHECK YOUR VERSION)',9.9,'Mariner 9.9hp.jpg', 13611,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [280, 'M20-4V', 7, 4, 2008, 2019, 2, 1, 1, 1, 1,
[
['15hp Not new V shape',15,'M20-4v(20)3.jpg', 9649,
['15\'\' (Short)','20\'\' (Long)','Pro Kicker 15\'\' (Short)','Unsure - use overall height']
]
,
['20hp Not new V shape',20,'M20-4v(20)4.jpg', 9650,
['15\'\' (Short)','20\'\' (Long)','Pro Kicker 15\'\' (Short)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [210, 'M9.9-4V', 7, 4, 2006, 2018, 2, 1, 1, 1, 1,
[
['8hp ',8,'M9.9-4v(8).jpg', 13609,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp ',9.9,'M9.9-4v(9.9).jpg', 13610,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [72, 'M115-4V', 7, 4, 2006, 2014, 4, 0, 0, 1, 1,
[
['75hp EFI',75,'m115-4v (80).jpg', 11167,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp EFI',80,'m115-4v (80)0.jpg', 11171,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp EFI',90,'', 11168,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp EFI',100,'m115-4v (100).jpg', 11170,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp EFI',115,'m115-4v.jpg', 11169,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [224, 'M6-4 Old', 7, 4, 1999, 2013, 1, 1, 1, 1, 1,
[
['4hp NO internal gas/fuel tank',4,'p4.jpg', 5652,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['4hp Internal gas/fuel tank at front',4,'M6-4 (4) gas front.gif', 5655,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['4hp Internal gas/fuel tank at rear',4,'M6-4 (4) gas rear.gif', 5656,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['4hp Sailmate',4,'M6-4 (4) Sail Mate.jpg', 5661,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['5hp Internal gas/fuel tank at front',5,'M6-4 (5) gas front.gif', 5657,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['5hp Internal gas/fuel tank at rear',5,'M6-4 (5) gas rear.gif', 5658,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['5hp NO internal gas/fuel tank',5,'p5.jpg', 5653,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['5hp Sailmate',5,'M6-4 (5) Sail Mate.gif', 5662,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp Sailmate',6,'M6-4 (6) Sail Mate.gif', 5663,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp Internal gas/fuel tank at rear',6,'M6-4 (6) gas rear.gif', 5660,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp Internal gas/fuel tank at front',6,'M6-4 (6) Gas front.gif', 5659,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp NO internal gas/fuel tank',6,'p6.jpg', 5654,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [83, 'M15-4<2008', 7, 4, 1980, 2008, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'M15-4-2006 (9.9).jpg', 4618,
['15\'\' (Short)','20\'\' (Long)','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['15hp',15,'M15-4-2006 (15)2.jpg', 4619,
['15\'\' (Short)','20\'\' (Long)','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [81, 'MT20-4', 7, 4, 2004, 2008, 2, 1, 1, 1, 1,
[
['15hp (Japanese Model)',15,'', 5163,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp (USA Model)',15,'', 5162,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [78, 'M40-4', 7, 4, 1999, 2007, 3, 1, 1, 1, 1,
[
['30hp Carb/EFI (3 Cylinder)',30,'M40-4 (30)1.jpg', 4996,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp Carb/EFI (3 Cylinder)',40,'M40-4 (40)0.jpg', 4997,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [238, 'M225-2OPTI<07', 7, 2, 2003, 2007, 6, 0, 1, 1, 1,
[
['200hp Optimax (Gen 1)',200,'', 9759,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Optimax (Gen 1)',225,'', 9760,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [75, 'M60-4<07', 7, 4, 1995, 2007, 4, 0, 1, 1, 1,
[
['40hp Carb/EFI Big Foot (4 Cylinder)',40,'M60-4-07 (40) BF.jpg', 5005,
['Big Foot 15\'\' (Short)']
]
,
['40hp Carb/EFI (4 Cylinder)',40,'M60-4-07 (40).jpg', 5004,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['50hp Carb/EFI Big Foot (4 Cylinder)',50,'M60-4-07 (50) BF.jpg', 5007,
['Big Foot 15\'\' (Short)']
]
,
['50hp Carb/EFI (4 Cylinder)',50,'M60-4-07 (50).jpg', 5006,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['60hp Carb/EFI (3 Cylinder)',60,'M60-4-07 (60).jpg', 5008,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['60hp Carb/EFI Big Foot (4 Cylinder)',60,'M60-4-07 (60) BF.jpg', 5009,
['Big Foot 15\'\' (Short)']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [73, 'M115-4<06', 7, 4, 1980, 2007, 4, 0, 1, 1, 1,
[
['75hp Carb/EFI',75,'mar75.jpg', 5418,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp (UK) Carb/EFI',80,'M115-4- 2007 (75).jpg', 5419,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp Carb/EFI',90,'M115-4-06 (90).jpg', 5420,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp (UK) Carb/EFI',100,'M115-4-06 (100).jpg', 5422,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp Carb/EFI',115,'M115-4-06 (115).jpg', 5421,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [70, 'M225-4', 7, 4, 2003, 2006, 6, 0, 1, 1, 1,
[
['200hp Saltwater (big fat motor)',200,'M225-4 Saltwater.jpg', 6707,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Saltwater (big fat motor)',225,'M225-4 Saltwater0.jpg', 6708,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [80, 'M25-4', 7, 4, 1980, 2005, 2, 1, 1, 1, 1,
[
['25hp',25,'mariner254stroke001-13598.jpg', 7316,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [299, 'M300-2', 7, 2, 1998, 2005, 6, 0, 1, 1, 0,
[
['Super Magnum',200,'M300-2 (Promax)4.jpg', 6718,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',200,'M300-2 (Promax).jpg', 6713,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',225,'M300-2 (Promax)5.jpg', 6719,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',225,'M300-2 (Promax)0.jpg', 6714,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',250,'M300-2 (Promax)6.jpg', 6720,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',250,'M300-2 (Promax)1.jpg', 6715,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',275,'M300-2 (Promax)2.jpg', 6716,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',275,'M300-2 (Promax)7.jpg', 6721,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',300,'M300-2 (Promax)3.jpg', 6717,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',300,'M300-2 (Promax)8.jpg', 6722,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [239, 'M225-2OPTI<02', 7, 2, 1998, 2002, 6, 0, 1, 1, 1,
[
['200hp DFI ',200,'M200-2 Opti (200).gif', 6703,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp DFI',225,'M225-2Opti (225)0.gif', 6704,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [231, 'M250-2<2001', 7, 2, 1991, 2001, 6, 0, 1, 1, 1,
[
['225 EFI & Carb',225,'Marina$2s$F250-2_5$200Efi.jpg', 6711,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 EFI & Carb',250,'Marina$2s$F250-2_5$250Efi.jpg', 6712,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [268, 'M40-2 4cyl', 7, 2, 1986, 1997, 4, 1, 1, 1, 1,
[
['30hp Jet ',30,'M40-2 4cyl (30 Jet)1.gif', 6226,
['Unsure - use overall height']
]
,
['40hp Magnum (4 cyl)',40,'M40-2 (4cyl) Magnum.jpg', 6227,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp Magnum (4cyl jet)',40,'M40-2 (4cyl) Magnum0.jpg', 6228,
['Unsure - use overall height']
]
,
['40hp 4 Cylinder',40,'M40-2 4Cyl.jpg', 6225,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [243, 'M200-2BM', 7, 2, 1989, 1995, 6, 0, 1, 1, 1,
[
['135 Not Split Cowling',135,'m200-2bm5.jpg', 6689,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140 Not Split Cowling',140,'m200-2bm6.jpg', 6690,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 Not Split Cowling',150,'m200-2bm7.jpg', 6691,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 Not Split Cowling',175,'m200-2bm8.jpg', 6692,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 Not Split Cowling',200,'m200-2bm9.jpg', 6693,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [255, 'M115-2', 7, 2, 1983, 1993, 4, 0, 1, 1, 1,
[
['90 4 Cyl Inline (Split Cowl)',90,'M115-2 Split Cowling 4 Cyl4.jpg', 12808,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp 4 Cyl Inline (Split Cowl)',100,'M115-2 Split Cowling 4 Cyl1.jpg', 12806,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115 4 Cyl Inline (Split Cowl)',115,'M115-2 Split Cowling 4 Cyl2.jpg', 12807,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [270, 'M40-2<1990', 7, 2, 1986, 1990, 2, 1, 1, 1, 1,
[
['30hp (2 Cylinder)',30,'M40-2 less than 1990.jpg', 7336,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40hp (2 Cylinder)',40,'M40-2 less than 19900.jpg', 7337,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [245, 'M200-2BM<90', 7, 2, 1970, 1988, 6, 0, 1, 1, 1,
[
['135hp Black Max/ Marathon',135,'m200-2bm-904.gif', 6694,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140 Black Max/ Marathon',140,'m200-2bm-905.gif', 6695,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 Black Max/ Marathon',150,'m200-2bm-906.gif', 6696,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 Black Max/ Marathon',175,'m200-2bm-907.gif', 6697,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 Black Max/ Marathon',200,'m200-2bm-908.gif', 6698,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [65, 'M5-2OLD', 7, 2, 1970, 1987, 1, 1, 0, 1, 1,
[
['4hp',4,'', 2552,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp',5,'', 2553,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [257, 'M115-2BM', 7, 2, 1984, 1986, 6, 0, 1, 1, 1,
[
['90hp Black Max (6 Cyl)',90,'', 6656,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp Black Max (6 Cyl)',115,'', 6657,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [68, 'M8-2TBI', 7, 2, 1979, 1981, 1, 1, 0, 1, 1,
[
['6hp Thunderbolt Injection',6,'', 2570,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['7.5hp Thunderbolt Injection',7.5,'', 2571,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp Thunderbolt Injection',8,'', 2572,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [230, 'MT18-2', 7, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['9.9hp (Jap Made)',9.9,'', 2585,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp (Jap Made)',15,'', 2586,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['18hp (Jap Made)',18,'', 2587,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp (Jap Made) (UK Only)',20,'', 2588,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [272, 'M40-2', 7, 2, 1994, 2025, 2, 1, 1, 1, 1,
[
['30hp 2 Cyl USA Made',30,'40m.jpg', 4770,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['30hp Seapro 2 Cyl USA Made',30,'40t.jpg', 4768,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40hp Seapro 2 Cyl USA Made',40,'40t0.jpg', 4769,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40hp 2 Cyl USA Made',40,'40m0.jpg', 4771,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [274, 'M15-2', 7, 2, 1988, 2025, 2, 1, 0, 1, 1,
[
['6hp (USA Made)',6,'6p2.jpg', 2409,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp (USA Made)',8,'8p2.jpg', 2410,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp (USA Made)',9.9,'M15-2(9.9).jpg', 2411,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp (USA Made)',15,'15p20.jpg', 2412,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp Seapro/Marathon (USA Made)',20,'M15-2 (15) Sea Pro.jpg', 2413,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [276, 'M25-2', 7, 2, 1988, 2025, 2, 1, 1, 1, 1,
[
['20hp',20,'', 13366,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp',25,'', 13367,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp See Shape Made in Japan OLD',25,'M25-2 Old Mariner that is made in Japan not USA.jpg', 13368,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp See Shape Made in Japan OLD',30,'M25-2 Old Mariner that is made in Japan not USA0.jpg', 13369,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [71, 'M200-4V', 7, 4, 2005, 2025, 4, 0, 1, 1, 1,
[
['135hp Verado',135,'135.jpg', 6699,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150hp Verado',150,'150mar.jpg', 6700,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp Verado',175,'175.gif', 6701,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp Verado (4 Cyl)',200,'M200-4V (200)0.jpg', 6702,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [305, 'M300-4V', 7, 4, 2004, 2025, 6, 0, 1, 1, 1,
[
['200hp Verado (Supercharged 6 Cyl)',200,'M350-4V (200).jpg', 8857,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Verado (Supercharged 6 Cyl)',225,'M350-4V (225).jpg', 8854,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['250hp Verado (Supercharged 6 Cyl)',250,'M350-4V (250).jpg', 8855,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['275hp Verado (Supercharged 6 Cyl)',275,'M350-4V (275).jpg', 8856,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300hp Verado (Supercharged 6 Cyl)',300,'M350-4V (300)0.jpg', 8853,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [345, 'M300-2OPTI', 7, 2, 2006, 2025, 6, 0, 1, 1, 1,
[
['200 DFI/ Optimax (Gen II)',200,'M250-2opti(200)2.jpg', 8431,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 Pro XS (USA)',200,'M250-2opti(200)1.jpg', 8429,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 DFI/ Optimax (Gen II)',225,'M250-2opti(225)2.jpg', 8432,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 Optimax Pro XS',225,'M250-2opti(225)1.jpg', 8430,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 DFI/ Optimax (GenII)',250,'', 8433,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [366, 'M150-4', 7, 4, 2011, 2025, 4, 0, 1, 1, 1,
[
['150hp EFI',150,'M150-4.jpg', 6677,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [375, 'M6-4', 7, 4, 2012, 2025, 1, 1, 0, 1, 1,
[
['4hp New shape',4,'M6-4 (4)1.jpg', 5683,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp New shape',5,'M6-4 (5)1.jpg', 5682,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp New shape',6,'M6-4 (6)1.jpg', 5681,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [400, 'M115-4', 7, 4, 2014, 2025, 4, 0, 0, 1, 1,
[
['75hp new 2.1 litre released July 2014',75,'75_efi_3.png', 11150,
['20\'\' (Long)','25\'\' (XL) ','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['80hp new 2.1 litre released July 2014',80,'F80.jpg', 11149,
['20\'\' (Long)','25\'\' (XL) ','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['90hp new 2.1 litre released July 2014',90,'F90.png', 11151,
['20\'\' (Long)','25\'\' (XL) ','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['100hp new 2.1 litre released July 2014',100,'F100.jpg', 11148,
['20\'\' (Long)','25\'\' (XL) ','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['115hp new 2.1 litre released July 2014',115,'F115.jpg', 11152,
['20\'\' (Long)','25\'\' (XL) ','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [404, 'M400-4V', 7, 4, 2015, 2025, 6, 0, 0, 1, 1,
[
['350hp released 2015',350,'M400-4V (350).jpg', 8717,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['400hp released 2015 (white)',400,'M400-4V (400) white.jpg', 8715,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['400hp released 2015 (black)',400,'M400-4V (400).jpg', 8716,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [431, 'M225-4 18', 7, 4, 2018, 2025, 6, 0, 1, 1, 1,
[
['175 V6 3.4 Litre New 2018',175,'M300-4 183.jpg', 10280,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 V6 3.4 Litre New 2018',200,'M300-4 184.jpg', 10281,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['225 V6 3.4 Litre New 2018',225,'M300-4 185.jpg', 10282,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [433, 'M20-4 18', 7, 4, 2018, 2025, 2, 1, 1, 1, 1,
[
['15 HP EFI New V shape 2018 (check shape)',15,'Mariner 15.jpg', 9713,
['20\'\' (Long)','Unsure - use overall height']
]
,
['20 HP EFI New V shape 2018 (check shape)',20,'Mariner 20.jpg', 9712,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [452, 'M300-4 18', 7, 4, 2018, 2025, 8, 0, 1, 1, 1,
[
['250hp 4.6L Black or White New shape 2018',250,'M300-4 181.jpg', 10271,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp AMS Leg 4.6L V8 New shape 2018 (Verado)',250,'M300-4 18.jpg', 10269,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp 4.6L Black or White New shape 2018',300,'M300-4 182.jpg', 10272,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300hp AMS Leg 4.6L V8 New shape 2018 (Verado)',300,'M300-4 180.jpg', 10270,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [67, 'MT9.8-2', 7, 2, 2001, 2025, 1, 1, 0, 1, 1,
[
['6hp Japanese Model',6,'', 2618,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp Japanese Model',8,'', 2619,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp Japanese Model',9.8,'', 2620,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [77, 'M40-4V', 7, 4, 2007, 2025, 3, 1, 1, 1, 1,
[
['30hp EFI (New shape) 3 Cyl',30,'M40-4V (30) mariner0.jpg', 11245,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp EFI (new shape) 3 cyl',40,'M40-4V.jpg', 11244,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [79, 'M30-4V', 7, 4, 2007, 2025, 3, 1, 1, 1, 1,
[
['25hp EFI',25,'M30-4V.jpg', 4895,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp EFI',30,'M30-4V(30).jpg', 4896,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [225, 'M60-4V', 7, 4, 2007, 2025, 4, 0, 1, 1, 1,
[
['40hp EFI Big Foot/Com. Thrust 4 Cyl',40,'M60-4V (40) BF.jpg', 7441,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
,
['40hp EFI 4 Cyl',40,'M60-4V (40).jpg', 7440,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50hp EFI 4 Cyl',50,'M60-4V (50).jpg', 7442,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50hp EFI Big Foot/Com. Thrust 4 Cyl',50,'M60-4V (50) BF.jpg', 7443,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
,
['60hp EFI 4 Cyl',60,'M60-4V (60).jpg', 7444,
['20\'\' (Long)','Unsure - use overall height']
]
,
['60hp EFI Big Foot/Com. Thrust 4 Cyl',60,'M60-4V (60) BF.jpg', 7445,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [233, 'M250-2', 7, 2, 2002, 2025, 6, 0, 1, 1, 1,
[
['225 EFI & Carb',225,'M250-2(225).jpg', 6709,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 EFI & Carb',250,'M250-2(250).jpg', 6710,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [222, 'M5-2', 7, 2, 1988, 2025, 1, 1, 0, 1, 1,
[
['4hp',4,'4p2.jpg', 2546,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp',5,'5p2.jpg', 2547,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [113, 'MT30-2', 7, 2, 1994, 2025, 2, 1, 1, 1, 1,
[
['25 Japanese Made',25,'MT30-2 (25)0.jpg', 4365,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30 Japanese Made',30,'MT30-20.gif', 4366,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [108, 'MT50-2', 7, 2, 1992, 2025, 3, 1, 1, 1, 1,
[
['40hp 3 cyl Japanse made NO pull start',40,'MT50-2P-Mariner1.jpg', 11871,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 cyl Japanse made NO pull start',50,'MT50-2P-Mariner2.jpg', 11872,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [106, 'MT50-2P', 7, 2, 1992, 2025, 3, 1, 1, 1, 1,
[
['40hp 3 cyl Sea Pro Japanese Pull & or Elect start',40,'', 11869,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp 3 cyl Japanse Pull & or Elect start',40,'MT50-2P-Mariner.jpg', 11867,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 cyl Japanse Pull & or Elect start',50,'MT50-2P-Mariner0.jpg', 11868,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 Cyl Lightening (Japanese) Pull & or Elect start',50,'Mariner 50.jpg', 11870,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [85, 'M3.5-4', 7, 4, 2007, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'M3.5-4 (2.5)0.jpg', 2517,
['15\'\' (Short)','Unsure - use overall height']
]
,
['3.3hp',3.3,'M3.5-4 (3.3)0.jpg', 2518,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'M3.5-4 (3.5)0.jpg', 2519,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [248, 'M175-2OPTI', 7, 2, 2001, 2025, 6, 0, 1, 1, 1,
[
['135 Optimax DFI',135,'o135.jpg', 6678,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 Optimax DFI',150,'o150.jpg', 6679,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 Optimax DFI',175,'o175.jpg', 6680,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [249, 'M125-2', 7, 2, 1994, 2025, 4, 0, 1, 1, 1,
[
['75hp Marathon/Seapro Commercial',75,'75t.jpg', 11523,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp Can be a Saltwater Series',100,'M125-2(115).jpg', 11520,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Can be a Saltwater Series',115,'M125-2(115)0.jpg', 11521,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['125 Can be Saltwater Series',125,'M125-2(125).jpg', 11522,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [251, 'M125-2OPTI', 7, 2, 2004, 2025, 4, 0, 1, 1, 1,
[
['75hp Optimax/ DFI',75,'M115-2opti(75).jpg', 11524,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80 Optimax Jet (Top cover only)',80,'', 11528,
[]
]
,
['90hp Optimax/ DFI',90,'M115-2opti(90).jpg', 11525,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Optimax/ DFI',115,'M115-2opti(115).jpg', 11526,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['125 Optimax/ DFI',125,'m125-2opti (125).gif', 11527,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [64, 'M3.3-2', 7, 2, 1996, 2025, 1, 1, 0, 1, 1,
[
['2.5',2.5,'Copy of 2p2.jpg', 2513,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.3',3.3,'Copy of 3p2.jpg', 2514,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [241, 'M200-2', 7, 2, 1996, 2025, 6, 0, 1, 1, 1,
[
['135hp EFI & Carb',135,'M200-2 (135).gif', 6681,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['140 EFI & Carb',140,'M200-2 (140).gif', 6682,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 EFI & Carb',150,'M200-2 (150).gif', 6683,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp Magnum',150,'M200-2 (150 Magnum)0.jpg', 6687,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['175 EFI & Carb',175,'M200-2 (175).gif', 6684,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp Magnum',175,'M200-2 (175 Magnum)0.jpg', 6688,
[]
]
,
['200hp Magnum',200,'M200-2 (200 Magnum).jpg', 6686,
['20\'\' (Long)','25\'\' (XL) ']
]
,
['200 EFI & Carb',200,'M200-2 (200).gif', 6685,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [259, 'M90-2', 7, 2, 1994, 2025, 3, 0, 1, 1, 1,
[
['75hp Saltwater',75,'M90-2 (75)0.jpg', 3568,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp Saltwater',90,'M90-2 (90)0.jpg', 3569,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [261, 'M60-2', 7, 2, 1991, 2025, 3, 1, 1, 1, 1,
[
['50hp Square shape cowling 3cyl (See image)',50,'M60-2 (50)0.jpg', 10138,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Square shape cowling 3cyl (see image)',60,'mariner 60hp 2 stroke.jpg', 10137,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [265, 'M50-2', 7, 2, 1996, 2025, 3, 1, 1, 1, 1,
[
['40hp 3 Cyl ',40,'M50-2 (40).gif', 10133,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 Cyl ',50,'50m0.jpg', 10134,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [483, 'M9.9-4 24', 7, 4, 2024, 2025, 2, 1, 1, 1, 1,
[
['Mariner 8hp NEW 2024 is EFI not carby (diff shape from old model)',8,'Mercury 9.9hp 2024 model larger cowling efi0.jpg', 13616,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['Mariner 9.9hp NEW 2024 is EFI not carby (diff shape from old model)',9.9,'Mercury 9.9hp 2024 model larger cowling efi.jpg', 13615,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [446, 'M9.9-4 19', 10, 4, 2017, 2024, 2, 1, 1, 1, 1,
[
['8hp 209cc Version CARBY Model ',8,'M9.9-4 19 (9.9) v3.jpg', 13630,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp 209cc Version CARBY Model',9.9,'M9.9-4 19 (9.9) v30.jpg', 13631,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp Pro Kicker 209cc Version CARBY Model',9.9,'M9.9-4 19 (9.9 prokick)0.jpg', 13632,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [281, 'M20-4V', 10, 4, 2008, 2019, 2, 1, 1, 1, 1,
[
['15hp Pro Kicker not new V shape',15,'M20-4V (15) Pro Kick.jpg', 13238,
['Pro Kicker 15\'\' (Short)','Unsure - use overall height','Pro Kicker 20\'\' (Long)','Pro Kicker 25\'\' (XL)']
]
,
['15hp not new V shape',15,'M20-4V (15).gif', 13240,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp not new V shape',20,'M20-4V (20).jpg', 13239,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [82, 'M9.9-4V', 10, 4, 2006, 2018, 2, 1, 1, 1, 1,
[
['8hp ',8,'Mercury 9.9 & 8hp 4stk 2008.gif', 13606,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp ',9.9,'Mercury 9.9 & 8hp 4stk 20080.gif', 13607,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp Pro Kicker (Old Version)',9.9,'M9.9-4v (pro kicker both).jpg', 13608,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [329, 'M350-4V', 10, 4, 2010, 2014, 6, 0, 0, 0, 1,
[
['350hp SCI Verado ( big air intake in front)',350,'M350-4SCI.gif', 13278,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, '', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [208, 'M115-4V', 10, 4, 2006, 2014, 4, 0, 0, 1, 1,
[
['75hp EFI',75,'Mercury_75_FourStroke_EFI.jpg', 13209,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp EFI',80,'Merc80.jpg', 13213,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp EFI',90,'Mercury_90_FourStroke_EFI.jpg', 13210,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp EFI',100,'m115-4v(100).jpg', 13212,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp EFI',115,'Mercury_115_FourStroke_EFI.jpg', 13211,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [84, 'M6-4 Old', 10, 4, 1999, 2013, 1, 1, 1, 1, 1,
[
['4hp with NO gas/fuel cap internal tank',4,'M6-4 (4)0.jpg', 13296,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['4hp with gas/fuel cap back of motor',4,'M6-4 (4) tank at rear.gif', 13293,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp with gas/fuel cap back of motor',5,'M6-4 (5) tank at rear.gif', 13294,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp with NO gas/fuel cap internal tank',5,'M6-4 (5)0.jpg', 13297,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp with gas/fuel cap back of motor',6,'M6-4 (6) tank at rear.gif', 13295,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp with NO gas/fuel cap internal tank',6,'M6-4 (6)0.jpg', 13298,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [212, 'M15-4<2008', 10, 4, 1980, 2008, 2, 1, 1, 1, 1,
[
['9.9hp USA Made',9.9,'m15-4(2006)(9.9).jpg', 13214,
['15\'\' (Short)','20\'\' (Long)','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['15hp USA Made',15,'M15-4-2006 (15)1.jpg', 13215,
['15\'\' (Short)','20\'\' (Long)','Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [115, 'MT20-4', 10, 4, 2004, 2008, 2, 1, 1, 1, 1,
[
['15hp Old Shape(Decals can vary to red)',15,'M15-4 LT 2008.gif', 13326,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [211, 'M115-4<06', 10, 4, 1980, 2007, 4, 0, 1, 1, 1,
[
['75hp Carb/EFI',75,'M115-4 06 (75).jpg', 13204,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp (UK) Carb/EFI',80,'M115-4 06 (80).jpg', 13205,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp Carb/EFI',90,'M115-4 06 (100).jpg', 13206,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp (UK) Carb/EFI',100,'M115-4 06 (100)0.jpg', 13208,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp Carb/EFI',115,'M115-4 06 (115).jpg', 13207,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [220, 'M40-4', 10, 4, 1999, 2007, 3, 1, 1, 1, 1,
[
['30hp Carb/EFI (3 Cyl)',30,'M40-4 (30)2.jpg', 13279,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp Carb/EFI (3 Cyl)',40,'M40-4 (40)1.jpg', 13280,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [296, 'M60-4<07', 10, 4, 1995, 2007, 4, 0, 1, 1, 1,
[
['40hp Carb/EFI Big Foot (4 Cylinder))',40,'M60-4-07 (40) BF1.jpg', 13300,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
,
['40hp Carb/EFI (4 Cylinder)',40,'M60-4-07 (40)1.jpg', 13299,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp Carb/EFI Big Foot (4 Cylinder)',50,'M60-4-07 (50) BF1.jpg', 13302,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
,
['50hp Carb/EFI (4 Cylinder)',50,'M60-4 07 (50).jpg', 13301,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Carb/EFI (4 Cylinder)',60,'M60-4 07 (60).jpg', 13303,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Carb/EFI Big Foot (4 Cylinder)',60,'M60-4 07 (60) BF.jpg', 13304,
['Big Foot 15\'\' (Short)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [237, 'M225-2OPTI<07', 10, 2, 2003, 2007, 6, 0, 1, 1, 1,
[
['200hp Optimax (Gen 1)',200,'M225-2OPTI+07 (200).jpg', 13340,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Optimax (Gen 1)',225,'M225-2OPTI+07 (225).jpg', 13341,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Optimax XS',250,'M250-2Opti (250) NOT FULL COVER.gif', 13342,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [298, 'M300-2', 10, 2, 1998, 2006, 6, 0, 1, 1, 0,
[
['Promax',200,'M300-2 (Promax).jpg', 13056,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',200,'M300-2 (Promax)4.jpg', 13061,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',225,'M300-2 (Promax)0.jpg', 13057,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',225,'M300-2 (Promax)5.jpg', 13062,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',250,'M300-2 (Promax)1.jpg', 13058,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',250,'M300-2 (Promax)6.jpg', 13063,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',275,'M300-2 (Promax)2.jpg', 13059,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',275,'M300-2 (Promax)7.jpg', 13064,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Promax',300,'M300-2 (Promax)3.jpg', 13060,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['Super Magnum',300,'M300-2 (Promax)8.jpg', 13065,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [214, 'M225-4', 10, 4, 2002, 2006, 6, 0, 1, 1, 1,
[
['200hp Saltwater (big fat motor)',200,'M225-4 Saltwater1.jpg', 13245,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Saltwater (big fat motor)',225,'M225-4 Saltwater2.jpg', 13246,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [215, 'M25-4', 10, 4, 1980, 2005, 2, 1, 1, 1, 1,
[
['25hp',25,'M25-4 (25).jpg', 13252,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [240, 'M225-2OPTI<02', 10, 2, 1999, 2002, 6, 0, 1, 1, 1,
[
['200hp DFI/ Optimax',200,'M225-2Opti+02(200).gif', 13338,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp DFI/ Optimax',225,'M225-2Opti+02.gif', 13339,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [232, 'M250-2<2001', 10, 2, 1991, 2001, 6, 0, 1, 1, 1,
[
['225 EFI or Carby Models',225,'M250-2 (225)0.jpg', 13052,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 EFI or Carb Models',250,'M250-2 (250)1.jpg', 13053,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [319, 'M40-2 4cyl', 10, 2, 1986, 1997, 4, 1, 1, 1, 1,
[
['30hp Jet ',30,'M40-2 4cyl (30 Jet)0.gif', 13081,
[]
]
,
['40hp 4 Cylinder',40,'M40-2 4Cyl0.jpg', 13082,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [244, 'M200-2BM', 10, 2, 1989, 1995, 6, 0, 1, 1, 1,
[
['135 Not split Cowling',135,'m200-2bm0.jpg', 13031,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['140 Not split Cowling',140,'m200-2bm1.jpg', 13032,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 Not split Cowling',150,'m200-2bm2.jpg', 13033,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 Not split Cowling',175,'m200-2bm3.jpg', 13034,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 Not split Cowling',200,'m200-2bm4.jpg', 13035,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [256, 'M115-2', 10, 2, 1983, 1993, 4, 0, 1, 1, 1,
[
['90hp (Split Cowling) 4 Cyl Inline',90,'M115-2 Split Cowling 4 Cyl3.jpg', 12997,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['100hp (Split Cowl) 4 Cyl Inline',100,'M115-2 Split Cowling 4 Cyl.jpg', 12995,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp (Split Cowl) 4 Cyl Inline',115,'M115-2 Split Cowling 4 Cyl0.jpg', 12996,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [271, 'M40-2<1990', 10, 2, 1986, 1990, 2, 1, 1, 1, 1,
[
['30hp (2 Cylinder)',30,'', 13083,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40hp (2 Cylinder)',40,'', 13084,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [246, 'M200-2BM<90', 10, 2, 1970, 1988, 6, 0, 1, 1, 1,
[
['135hp Black Max/ Marathon',135,'m200-2bm-90.gif', 13036,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['140 Black Max/ Marathon',140,'m200-2bm-900.gif', 13037,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['150 Black Max/ Marathon',150,'m200-2bm-901.gif', 13038,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['175 Black Max/ Marathon',175,'m200-2bm-902.gif', 13039,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['200 Black Max/ Marathon',200,'m200-2bm-903.gif', 13040,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [223, 'M5-2OLD', 10, 2, 1970, 1987, 1, 1, 0, 1, 1,
[
['4hp',4,'', 13087,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp',5,'', 13088,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [258, 'M115-2BM', 10, 2, 1978, 1986, 6, 0, 1, 1, 1,
[
['90hp Black Max (6 Cyl)',90,'M115-2BM.jpg', 12998,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['115hp Black Max (6 Cyl)',115,'M115-2BM0.jpg', 12999,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [228, 'M8-2TBI', 10, 2, 1979, 1981, 1, 1, 0, 1, 1,
[
['6hp Thunderbolt Injection',6,'', 13098,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['7.5hp Thunderbolt Injection',7.5,'', 13099,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp Thunderbolt Injection',8,'', 13100,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [355, 'M6-4', 10, 4, 2012, 2025, 1, 1, 0, 1, 1,
[
['4hp New shape Gas Cap Front',4,'M6-4 (4,5,6) tank at front5.gif', 13287,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp New shape Gas Cap Front',5,'M6-4 (4,5,6) tank at front4.gif', 13286,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp New shape Gas Cap Front',6,'M6-4 (4,5,6) tank at front3.gif', 13285,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [365, 'M150-4', 10, 4, 2011, 2025, 4, 0, 1, 1, 1,
[
['135hp EFI (no 2nd color avail)',135,'M150-4(135).jpg', 13228,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp Pro XS with CT Leg',150,'M150-4 Pro XS0.jpg', 13231,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['150hp Pro XS (no 2nd color avail)',150,'M150-4 Pro XS.jpg', 13230,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp EFI SEAPRO (no 2nd color avail)',150,'M150-4 (SeaPro 150).jpg', 13229,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['150hp EFI (no 2nd color avail)',150,'M150-4.gif', 13227,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [403, 'M400-4V', 10, 4, 2015, 2025, 6, 0, 0, 1, 1,
[
['200 PRO Verado (2.6L L6) Fake rear vent.',200,'Merc 200 Pro.jpg', 13292,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 PRO Verado (2.6L L6) Fake rear vent.',250,'mercury-verado-pro-250.jpg', 13291,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300 PRO Verado (2.6L L6) Fake rear vent.',300,'350 Pro0.jpg', 13290,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['350hp released 2015 Black or White (NOT SCi Model)',350,'M400-4-(350).jpg', 13288,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['400hp VERADO (2.6L L6 Black or White) Not racing model',400,'M400-std.jpg', 13289,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [408, 'M300-4V', 10, 4, 2004, 2025, 6, 0, 0, 1, 1,
[
['200hp Verado (Supercharged 2.6L L6)',200,'M300-4V (200)0.jpg', 13273,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Verado (Supercharged 2.6L L6)',225,'M300-4V (225)0.jpg', 13274,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Verado (Supercharged 2.6L L6)',250,'M300-4V (250)0.jpg', 13275,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['275hp Verado (Supercharged 2.6L L6)',275,'M300-4V (275)0.jpg', 13276,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300hp Verado (Supercharged 2.6L L6)',300,'L6-All.jpg', 13277,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [397, 'M115-4', 10, 4, 2014, 2025, 4, 0, 0, 1, 1,
[
['75hp 2.1 litre SeaPro (no 2nd colour avail)',75,'M115-4 (SeaPro 75).jpg', 13200,
['Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['75hp new 2.1 litre (no 2nd colour avail)',75,'M115-4 (75).jpg', 13192,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp new 2.1 litre (no 2nd colour avail)',80,'M115-4 (80).jpg', 13193,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp 2.1 litre SeaPro (no 2nd colour avail)',90,'M115-4 (SeaPro 90).jpg', 13199,
['Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['90hp new 2.1 litre (no 2nd colour avail)',90,'M115-4 (90).jpg', 13191,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp new 2.1 litre with command thrust (no 2nd colour avail)',90,'M115-4 (90 CT).jpg', 13196,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['100hp new 2.1 litre (no 2nd colour avail)',100,'M115-4 (100).jpg', 13194,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp new 2.1 litre with command thrust (no 2nd colour avail)',100,'M115-4 (100 CT).jpg', 13197,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['115hp new 2.1 litre with command thrust (no 2nd colour avail)',115,'M115-4 (115 CT).jpg', 13195,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['115hp 2.1 litre Pro XS with command thrust (no 2nd colour avail)',115,'M115-4PXS.png', 13202,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['115hp 2.1 litre SeaPro Command Thrust (no 2nd colour avail)',115,'M115-4 (SeaPro 115)0.jpg', 13203,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['115hp new 2.1 litre Pro XS (no 2nd colour avail)',115,'M115-4 (115 Pro XS).jpg', 13201,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp 2.1 litre SeaPro (no 2nd colour avail)',115,'M115-4 (SeaPro 115).jpg', 13198,
['Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['115hp new 2.1 litre (no 2nd colour avail)',115,'M115-4 (115).jpg', 13190,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [328, 'M300-2Opti ', 10, 2, 2005, 2025, 6, 0, 0, 0, 1,
[
['225 Optimax Sports XS',225,'M300-2Opti (225 Sport XS).jpg', 13344,
[]
]
,
['250 Optimax Sports XS',250,'M300-2Opti (250 Sport XS)0.jpg', 13343,
[]
]
],
0, '', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [429, 'M20-4 18', 10, 4, 2018, 2025, 2, 1, 1, 1, 1,
[
['9.9hp Pro Kicker EFI 333cc Version 2018 Release (CAUTION CHECK YOUR VERSION)',9.9,'9.9 prok.png', 13237,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F10 MLH (2018 Release 333cc) (check shape)',10,'F10.jpeg', 13236,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15HP SeaPro EFI New V Shape 2018 release (check shape)',15,'M20-4 18 (SeaPro 15hp)0.jpg', 13234,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp Pro Kicker EFI New V Shape 2018 release (check shape)',15,'M20-4 18 (Pro Kicker 15hp).jpg', 13235,
['Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['15HP EFI New V shape 2018 release (check shape)',15,'Mercury_EFI_15hp.png', 13232,
['20\'\' (Long)','Unsure - use overall height']
]
,
['20HP EFI New V shape 2018 release (check shape)',20,'Mercury-20hp.jpg', 13233,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [479, 'MAV7.5-E', 10, 4, 2023, 2025, 1, 0, 0, 0, 0,
[
['Avator 7.5e electric outboard',7.5,'Avator 7.5e.png', 13185,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [476, 'MR60-4V', 10, 4, 2007, 2025, 4, 0, 1, 1, 1,
[
['60R - Racing Decals, High Thrust leg',60,'60R.png', 13130,
['High Thrust 15\'\' (Short)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [482, 'M9.9-4 24', 10, 4, 2024, 2025, 2, 1, 1, 1, 1,
[
['Mercury 8hp NEW 2024 208cc New EFI',8,'M9.9-4 24 model larger cowling efi3.jpg', 13661,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['Mercury 9.9hp NEW 2024 208cc New EFI',9.9,'M9.9-4 24 model larger cowling efi2.jpg', 13660,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['Mercury 9.9hp Pro Kicker NEW 2024 208cc New EFI',9.9,'', 13662,
['Big Foot 15\'\' (Short)','Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [475, 'MR500-4', 10, 4, 2023, 2025, 10, 0, 0, 0, 1,
[
['400R 5.7L V10 - White with Red Accent',400,'V10 400R white.png', 13189,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['400R 5.7L V10 - Black with Red Accent',400,'V10 400R Black.png', 13188,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [473, 'M400-4 23', 10, 4, 2023, 2025, 10, 0, 0, 0, 1,
[
['350 5.7L V10 Verado (2023 Release CHECK IMAGE)',350,'V10.png', 13283,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['400 5.7L V10 Verado (2023 Release CHECK IMAGE)',400,'V100.png', 13284,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [468, 'M30-4 22', 10, 4, 2022, 2025, 3, 1, 1, 1, 1,
[
['25hp Latest model (500cc) CHECK IMAGE FOR MODEL',25,'m30-4-22-(25).jpg', 13492,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp SeaPro Latest model (500cc) CHECK IMAGE FOR MODEL',25,'m30-4 22 (25sp).png', 13494,
['20\'\' (Long)','Unsure - use overall height']
]
,
['25hp ProKicker Latest model (500cc) CHECK IMAGE FOR MODEL',25,'m30-4 22 (25PK).png', 13495,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['30HP Latest model (500cc) CHECK IMAGE FOR MODEL',30,'m30-4 22 (30).png', 13493,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [453, 'M225-4 18', 10, 4, 2018, 2025, 6, 0, 0, 1, 1,
[
['175 ProXS 3.4L V6 New 2018',175,'M225-4 18 (ProXS 175).png', 13251,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 V6 3.4 Litre New 2018 (Black or White)',175,'M225-4 18 (175).png', 13249,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 SeaPro 3.4L V6 New 2018',200,'M225-4 18 (200 SeaPro).png', 13250,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['200 V6 3.4 Litre New 2018 (Black or White)',200,'M225-4 18 (200)0.jpg', 13247,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['225 V6 3.4 Litre New 2018 (Black or White)',225,'M225-4 18 (225).jpg', 13248,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [477, 'MR400-4V', 10, 4, 2015, 2025, 6, 0, 0, 1, 1,
[
['400R (2.6L L6 Racing) Black with Red graphics (Standard)',400,'L6 400R0.png', 13119,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['400R (2.6L L6 Racing) Black - custom colour, please advise',400,'L6 400R.png', 13118,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['400R (2.6L L6 Racing) White - custom colour, please advise',400,'L6 400R White custom.png', 13117,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['400R (2.6L L6 Racing) White with Red graphics (Standard)',400,'400R White.jpg', 13116,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [445, 'MR450-4', 10, 4, 2019, 2025, 8, 0, 0, 0, 1,
[
['250hp Racing 4.6L V8 Black',250,'300R B1.png', 13124,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp Racing 4.6L V8 Black',300,'300R.jpg', 13123,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp Racing 4.6L V8 White',300,'300R white1.png', 13125,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['Racing 450R 4.6L V8 Black without steering harness',450,'M450-4 19.jpg', 13120,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['Racing 450R 4.6L V8 White without steering harness',450,'M450-4 190.jpg', 13121,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['MOTORS with STEERING HARNESS ONLY SPLASH COVERS',450,'Mercury450R-black.png', 13122,
['Unsure - use overall height']
]
,
['500hp Racing 4.6L V8 White',500,'500R White.jpg', 13127,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['500hp Racing 4.6L V8 Black',500,'500R Black.jpg', 13126,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [434, 'M300-4 18', 10, 4, 2018, 2025, 8, 0, 1, 1, 1,
[
['200hp ProXS 4.6L V8 New shape 2018',200,'M300-4 18 PXS(200).png', 13499,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['225hp SeaPro 4.6L V8 New shape 2018',225,'M300-4 18 SPro(225).png', 13496,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['225hp ProXS 4.6L V8 New shape 2018',225,'M300-4 18 PXS(225).png', 13500,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['250hp SeaPro CMS Leg 4.6L V8 New shape 2018',250,'M300-4 18 SPro(250).png', 13497,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['250hp CMS Leg 4.6L V8 Black or White New shape 2018',250,'250.jpg', 13505,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Verado AMS Leg 4.6L V8 New shape 2018 ',250,'V8-All.jpg', 13503,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['250hp ProXS 4.6L V8 New shape 2018',250,'M300-4 18 PXS(250).png', 13501,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp SeaPro AMS Leg 4.6L V8 New shape 2018',300,'M300-4 18 SPro AMS(300).png', 13498,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp CMS Leg 4.6L V8 Black or White New shape 2018',300,'300 CMS.jpg', 13506,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300hp SeaPro CMS Leg 4.6L V8 New shape 2018',300,'300hp_v8_seapro_cms.png', 13507,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp ProXS 4.6L V8 New shape 2018',300,'M300-4 18 PXS(300).png', 13502,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
,
['300hp Verado AMS Leg 4.6L V8 New shape 2018',300,'V8-All0.jpg', 13504,
['Unsure - use overall height','20 inch Leg - Mercury Verado 5.44 inch Gearbox','25 inch Leg - Mercury Verado 5.44 inch Gearbox','30 inch Leg - Mercury Verado 5.44 inch Gearbox']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [457, 'M600-4 ', 10, 4, 2021, 2025, 12, 0, 0, 0, 1,
[
['V12 7.6L 500 SeaPro',500,'SeaPro 500.png', 13319,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['V12 7.6L 600 Verado - Black Motor',600,'V12-phantom-black@1x.png', 13317,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['V12 7.6L 600 Verado - White Motor',600,'V12-warm-fusion@1x.png', 13318,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [481, 'MR225-4 18', 10, 4, 2024, 2025, 6, 0, 0, 1, 1,
[
['150R V6 Racing Cold Fusion White',150,'MR225-4 18 (150)2.png', 13683,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150R V6 Racing Phantom Black',150,'MR225-4 18 (150)1.png', 13682,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200R V6 Racing Cold Fusion White',200,'MR225-4 18 (200)0.png', 13685,
['20\'\' (Long)','Unsure - use overall height']
]
,
['200R V6 Racing Phantom Black',200,'MR225-4 18 (200).png', 13684,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [277, 'M25-2', 10, 2, 1988, 2025, 2, 1, 1, 1, 1,
[
['20hp USA Made same as 25hp',20,'M25-2.jpg', 13046,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp USA Made',25,'M25-20.jpg', 13047,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [229, 'MT18-2', 10, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['9.9hp Super (Jap Made)',9.9,'MT18-2 New.jpg', 13105,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp Super (Jap Made)',15,'MT18-2 New0.jpg', 13106,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['18hp Super (Jap Made)',18,'MT18-2 New1.jpg', 13107,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp (Jap Made) (UK Only)',20,'MT18-2 New2.jpg', 13108,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [221, 'M40-4V', 10, 4, 2007, 2025, 3, 0, 1, 1, 1,
[
['30hp EFI (747cc CHECK your model) 3 Cyl',30,'M40-4V (30)1.jpg', 13282,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp EFI (747cc CHECK your model) 3 Cyl',40,'mercury400.gif', 13281,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [218, 'M30-4V', 10, 4, 2007, 2025, 3, 1, 1, 1, 1,
[
['25hp EFI (526cc CHECK)',25,'mercury25.gif', 13259,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp EFI (526cc CHECK)',30,'mercury30.gif', 13260,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [217, 'M3.5-4', 10, 4, 2007, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'mercury_2.5.gif', 13253,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'mercury_3.5.gif', 13254,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [216, 'M3.3-2', 10, 2, 1996, 2025, 1, 1, 0, 1, 1,
[
['2.5',2.5,'Mercury 2.5 & 3.3hp 2 stk.jpg', 13054,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.3',3.3,'Mercury 2.5 & 3.3hp 2 stk0.jpg', 13055,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [213, 'M200-4V', 10, 4, 2005, 2025, 4, 0, 1, 1, 1,
[
['135hp Verado',135,'veradom135.gif', 13241,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150hp Verado',150,'veradom150.gif', 13242,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175hp Verado',175,'veradom175.gif', 13243,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200hp Verado (4 Cyl)',200,'M200-4V (200).jpg', 13244,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [112, 'MT30-2', 10, 2, 1994, 2025, 2, 1, 1, 1, 1,
[
['25 Japanese Made',25,'MT30-2 (25).jpg', 13109,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30 Japanese Made',30,'Mercury 30 Japanese.jpg', 13110,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [109, 'MT50-2', 10, 2, 1992, 2025, 3, 1, 1, 1, 1,
[
['40hp 3 cyl Japanse made NO pull start',40,'MT50-2 (Both Together)0.gif', 13111,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 cyl Japanse made NO pull start',50,'MT50-2 (Both Together)1.gif', 13112,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [105, 'MT50-2P', 10, 2, 1992, 2025, 3, 1, 0, 1, 1,
[
['40hp 3 cyl Japanse Pull & or Elect start',40,'MT50-2P.jpg', 13113,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp Sea Pro Japanse Pull & or Elect start',40,'', 13115,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['50hp 3 cyl Japanse Pull & or Elect start',50,'MT50-2P0.jpg', 13114,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [74, 'M60-4V', 10, 4, 2007, 2025, 4, 0, 1, 1, 1,
[
['40hp EFI Big Foot 4 Cyl (older models)',40,'M60-4V (40)0.jpg', 13314,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['40hp EFI 4 Cyl',40,'M60-4V (40).gif', 13305,
['20\'\' (Long)','Unsure - use overall height']
]
,
['40hp EFI Command Thrust 4 Cyl',40,'M60-4V (40) CT.jpg', 13306,
['Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['40hp SeaPro 4 Cyl CT leg',40,'M60-4 Seapro (40).jpg', 13313,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['50hp EFI 4 Cyl',50,'M60-4V (50) both1.gif', 13307,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50hp EFI Command Thrust 4 Cyl',50,'M60-4V (50) CT.jpg', 13308,
['Unsure - use overall height','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['50hp EFI Big Foot 4 Cyl (older models)',50,'M60-4V (50) Big Foot.jpg', 13315,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['60hp SeaPro 4 Cyl CT Leg',60,'M60-4 Seapro (690).jpg', 13312,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['60hp EFI Formula Racing 4 Cyl',60,'M60-4 (60 Racing).jpg', 13311,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp EFI Big Foot 4 Cyl (older models)',60,'M60-4V (60) BF3.jpg', 13316,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['60hp EFI 4 Cyl',60,'M60-4V (60).gif', 13309,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp EFI Command Thrust 4 Cyl',60,'M60-4V (60) CT.jpg', 13310,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [234, 'M250-2', 10, 2, 2002, 2025, 6, 0, 1, 1, 1,
[
['225 ProXB EFi',225,'ProXB.jpg', 13050,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 EFI & Carb',225,'M250-2 (225).jpg', 13048,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 ProXB EFi',250,'ProXB0.jpg', 13051,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 EFI & Carb',250,'M250-2 (250).gif', 13049,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [236, 'M300-2OPTI', 10, 2, 2006, 2025, 6, 0, 0, 1, 1,
[
['200 Pro XS (USA)',200,'M300-2Opti Pro XS (300)1.jpg', 13349,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 DFI/ Optimax (Gen II)',200,'M250-2Opti (200).gif', 13347,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 Optimax Pro XS',225,'M300-2Opti Pro XS (300)2.jpg', 13351,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225 DFI/ Optimax (Gen II)',225,'Merc Opti 225 G2 2007.gif', 13346,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 Optimax XS Racing (SPLASH ONLY)',250,'M300-2-OPTi-Racing-(250).jpg', 13353,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 DFI/ Optimax (GenII)',250,'M250-2Opti (250)0.gif', 13348,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 Optimax Pro XS',250,'M300-2Opti Pro XS (300)0.jpg', 13345,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300 Optimax Pro XS',300,'M300-2Opti Pro XS (300)3.jpg', 13352,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300 Optimax XS Racing (Splash/ Mooring ONLY)',300,'M300-2Opti-(300xs).gif', 13350,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [275, 'M15-2', 10, 2, 1988, 2025, 2, 1, 0, 1, 1,
[
['6hp (USA Made)',6,'M15-2 (6).jpg', 13009,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp (USA Made)',8,'M15-2 (8)0.jpg', 13010,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp (USA Made)',9.9,'M15-2(9.9).gif', 13011,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['10hp Marathon/ Seapro (USA Made)',10,'M15-2 (10SP).jpg', 13013,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp (USA Made) Can be Sea Pro as well',15,'M15-2(15).gif', 13012,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [273, 'M40-2', 10, 2, 1994, 2025, 2, 1, 1, 1, 1,
[
['30hp 2 Cyl USA Made',30,'M40-2 (30).gif', 13079,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp 2 Cyl USA Made Seapro',30,'M40-2 (30 Sea Pro).jpg', 13077,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp 2 Cyl USA Made',40,'M40-2 (40)1.jpg', 13080,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp 2 Cyl USA Made Seapro',40,'M40-2 (40 Sea Pro).jpg', 13078,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [266, 'M50-2', 10, 2, 1998, 2025, 3, 1, 1, 1, 1,
[
['40hp Rounder shape 3 Cyl,',40,'M50-2 (50)10.jpg', 13089,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp Rounder shape 3 Cyl,',50,'M50-2 (50)11.jpg', 13090,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Rounder shape 3 Cyl,',60,'M50-2 (50)12.jpg', 13091,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [262, 'M60-2', 10, 2, 1991, 2025, 3, 1, 1, 1, 1,
[
['40hp Square Shape USA made 3cyl',40,'M40-2 4cyl (40)2.jpg', 13095,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp Square Shape USA made 3cyl',50,'M60-2 (50).jpg', 13096,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['55hp Sea Pro USA made 3cyl',55,'M60-2 (55 Sea Pro).jpg', 13093,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Sea Pro USA made 3cyl',60,'M60-2 (60 Sea Pro).jpg', 13094,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Square Shape Big Foot Leg',60,'M60-2 (Big Foot 60).jpg', 13097,
['Unsure - use overall height','Command Thrust/Big Foot 25\'\' (XL)','Command Thrust/Big Foot 20\'\' (Long)']
]
,
['60hp Square Shape USA made 3cyl',60,'M60-2 (60)5.jpg', 13092,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [260, 'M90-2', 10, 2, 1994, 2025, 3, 0, 1, 1, 1,
[
['65hp Jet Splash Cover ONLY',65,'M90-2 (65 Jet).jpg', 13416,
[]
]
,
['75hp Seapro 3 cyl',75,'M125-2 (75) Sea Pro1.jpg', 13417,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['75hp 3Cyl - See Image',75,'M90-2 (75).jpg', 13414,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp 3Cyl - See Image',90,'M90-2 (90).jpg', 13415,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [117, 'MT9.8-2', 10, 2, 2001, 2025, 2, 1, 1, 1, 1,
[
['6hp (Jap Made)',6,'', 11472,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp (Jap Made)',8,'', 11473,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp (Jap Made)',9.8,'', 11474,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp (Jap Made) Lightweight NEW 2017',9.9,'Mercury-9.9-two-stroke.jpg', 11475,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [252, 'M125-2OPTI', 10, 2, 2004, 2025, 4, 0, 1, 1, 1,
[
['75hp Optimax/ DFI',75,'M115-2Opti (75).jpg', 13327,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80/90hp Optimax/ DFI',90,'M115-2Opti (90).jpg', 13328,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Optimax/ DFI',115,'M115-2Opti (115).jpg', 13329,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Optimax Pro XS',115,'M125-2Opti Pro Xs (115).jpg', 13331,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['125 Optimax/ DFI',125,'M125-2Opti (125).jpg', 13330,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [250, 'M125-2', 10, 2, 1994, 2025, 4, 0, 1, 1, 1,
[
['75hp 4 Cylinder Seapro ',75,'M125-2 (75) Sea Pro0.jpg', 13003,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp 4 Cyl Can be a Saltwater Series',100,'M125-2(100).jpg', 13000,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp 4Cyl Can be a Saltwater Series',115,'M125-2(115)2.jpg', 13001,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['125hp 4cyl Can be a Saltwater Series',125,'M125-2(125)0.jpg', 13002,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [247, 'M175-2OPTI', 10, 2, 2001, 2025, 6, 0, 0, 1, 1,
[
['135 Optimax DFI',135,'Mercury_135_V6-OptiMax.jpg', 13332,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 Optimax DFI',150,'Mercury_150_V6-OptiMax.jpg', 13333,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 Optimax Pro XS',150,'mercury 150 pro xs optimax.jpg', 13336,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 Optimax DFI SaltWater',150,'M175-2Opti-Salt-Water0.jpg', 13337,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 Optimax DFI',175,'Mercury_175_V6-OptiMax.jpg', 13334,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 Optimax Pro XS',175,'M175-2Opti (175 XS Pro)0.gif', 13335,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [242, 'M200-2', 10, 2, 1996, 2025, 6, 0, 1, 1, 1,
[
['115 DFI Saltwater Optimax (Old Shape)',115,'M200-2 (115 Opti).jpg', 13025,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['135hp EFI & Carb Saltwater',135,'M200-2 (135).jpg', 13020,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['135 DFI Saltwater Optimax (Old Shape)',135,'M200-2 (135) Opti.jpg', 13026,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['140 EFI & Carb Saltwater',140,'M200-2 (140).jpg', 13021,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 XR6 (V6)',150,'M200-2 XR6.jpg', 13030,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['150 DFI Saltwater Optimax (Old Shape)',150,'M200-2 (150 Opti)0.jpg', 13027,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150 EFI & Carb Saltwater',150,'M200-2 (150)0.gif', 13022,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 DFI Saltwater Optimax (Old Shape)',175,'M200-2 (175 Opti).jpg', 13028,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175 EFI & Carb Saltwater',175,'M200-2 (175).jpg', 13023,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 EFI & Carb Saltwater',200,'M200-2 (200).jpg', 13024,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['200 EFI Offshore',200,'m200.gif', 13029,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [66, 'M5-2', 10, 2, 1988, 2025, 1, 1, 0, 1, 1,
[
['4hp',4,'Mercury 5 & 4hp 2 stk.jpg', 13085,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp',5,'Mercury 5 & 4hp 2 stk0.jpg', 13086,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [323, 'M6-4 Old', 13, 4, 2002, 2003, 1, 1, 0, 1, 1,
[
['4hp',4,'M6-4 (4).jpg', 5672,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['5hp',5,'M6-4 (5).jpg', 5671,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp',6,'M6-4 (6).jpg', 5670,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [119, 'T5-2', 13, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['4hp Nissan & Tohatsu are same motor',4,'M 4B.jpg', 5365,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp Nissan & Tohatsu are same motor',5,'M 5B.jpg', 5366,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [363, 'T3.5-2', 13, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['2.5hp Nissan & Tohatsu are same motor',2.5,'M 2.5a21.jpg', 5361,
['15\'\' (Short)','Unsure - use overall height']
]
,
['3.5hp Nissan & Tohatsu are same motor',3.5,'M 3.5b21.jpg', 5362,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [362, 'MT30-2', 13, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['25 Nissan & Tohatsu are same motor',25,'MT30-2(25).jpg', 5353,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['30 Nissan & Tohatsu are same motor',30,'MT30-2.jpg', 5354,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [361, 'MT18-2', 13, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['9.9hp Nissan & Tohatsu are same motor',9.9,'M9.9.jpg', 5347,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp Nissan & Tohatsu are same motor',15,'M15.jpg', 5346,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['18hp Nissan & Tohatsu are same motor',18,'M 18E2.jpg', 5345,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp Nissan & Tohatsu are same motor',20,'M 18E20.jpg', 5348,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [360, 'MT9.8-2', 13, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['6hp Nissan & Tohatsu are same motor',6,'M 6B.jpg', 5336,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp Nissan & Tohatsu are same motor',8,'M 8B.jpg', 5335,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp Nissan & Tohatsu are same motor',9.8,'M 9.8b.jpg', 5334,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [348, 'T40C-2', 13, 2, 1996, 2025, 1, 1, 1, 1, 1,
[
['NS40 C',40,'T40C-2 (40).jpg', 4820,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [347, 'T50-2TLDI', 13, 2, 2003, 2025, 3, 0, 1, 1, 1,
[
['NS40 TLDI',40,'T50-2TLDI (40).jpg', 5523,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['NS50 TLDI',50,'T50-2TLDI (50).jpg', 5522,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [325, 'T30-4', 13, 4, 2004, 2025, 3, 1, 1, 1, 1,
[
['25hp',25,'T30-4 (25)0.jpg', 4303,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp',30,'T30-4 (30)0.jpg', 4304,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [324, 'MT20-4', 13, 4, 2004, 2025, 2, 1, 1, 1, 1,
[
['15',15,'MT18-4 (15).jpg', 5190,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['18',18,'MT18-4 (18).jpg', 5189,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['20',20,'MT18-4 (20).jpg', 5188,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [322, 'M3.5-4', 13, 4, 2007, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'M3.5-4 (2.5)2.jpg', 4272,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'M3.5-4 (3.5)1.jpg', 4271,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [399, 'T9.8-4', 13, 4, 1998, 2025, 2, 1, 1, 1, 1,
[
['8hp',8,'T9.8-4 (8).jpg', 6293,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp',9.8,'9.8hp 4stk.jpg', 6292,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [454, 'OX300', 21, 4, 2019, 2025, 12, 0, 0, 0, 1,
[
['OXE 300 (Coming Soon)',300,'O300-D.jpg', 10560,
['25\'\' (XL) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, '', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [455, 'OX200', 21, 4, 2020, 2025, 8, 0, 1, 0, 1,
[
['OXE 200hp Diesel',150,'Oxe 150hp.jpg', 12277,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['OXE 200hp Diesel',175,'Oxe 175hp.jpg', 12276,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['OXE 200hp Diesel',200,'oxe-200.jpg', 12275,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [346, 'Y25-4<2008', 9, 4, 1998, 2009, 2, 1, 1, 1, 1,
[
['Parsun 25',25,'parsun25 4stk.jpg', 4808,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [292, 'P3.6-2', 9, 2, 2000, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'P3.6-2(2.5).jpg', 2627,
['15\'\' (Short)','Unsure - use overall height']
]
,
['3.6hp',3.6,'P3.6-2.jpg', 2628,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [358, 'P9.8-2', 9, 2, 2000, 2025, 1, 1, 0, 1, 1,
[
['6hp',6,'P9.8-2 (6).gif', 6398,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp',9.8,'P9.8-2 (9.8).gif', 6397,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [378, 'Y15-4', 9, 4, 1998, 2025, 2, 1, 1, 1, 1,
[
['F15BM',15,'outboard_f15.png', 5770,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [435, 'T9.8-4', 9, 4, 1998, 2025, 2, 1, 1, 1, 0,
[
['MFS 8hp - CHECK IMAGE FOR SHAPE',8,'MFS--8A3-01.gif', 11122,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp FLW - CHECK IMAGE FOR SHAPE',9.8,'MFS--9.8a3-010.gif', 11123,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [339, 'Y60-4', 14, 4, 1998, 2014, 4, 0, 1, 1, 1,
[
['60hp E.F.I (Dorado)',60,'Y60-4 (Selva).jpg', 10000,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [341, 'Y50-4', 14, 4, 2006, 2014, 4, 0, 1, 1, 1,
[
['40hp XS E.F.I (Dorado)',40,'', 7084,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp E.F.I (Dorado)',50,'Y50-4 (Selva).jpg', 7085,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [337, 'Y115-4', 14, 4, 1998, 2014, 4, 0, 1, 1, 1,
[
['115hp E.F.I (Narwhal)',115,'Y115-4 (Selva).jpg', 7081,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [405, 'Y115-4A', 14, 4, 2014, 2025, 4, 0, 1, 1, 1,
[
['40hp XSR (Tarpon)',40,'Tarpon0.jpg', 8162,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp XSR (Narwhal)',115,'tarponefi-115xsr.jpg', 8161,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [418, 'Y200-4', 14, 4, 2016, 2025, 4, 0, 0, 1, 1,
[
['100hp Killer Whale XSR (Commercial) (2.8L)',100,'', 10218,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp Killer Whale 2XSR EFI (2.8L)',150,'150XSR.jpg', 10217,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp Killer Whale 2 (New Model) (2.8L)',150,'Selva 150 2016.jpg', 10216,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200hp Sei Whale (2.8L)',200,'Sei Whale.jpg', 10219,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [334, 'Y250-4', 14, 4, 2017, 2025, 6, 0, 1, 1, 1,
[
['F200 EFi (Grey Whale)',200,'Grey Whale.jpg', 10012,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['F225 EFi (Fin Whale)',225,'Fin Whale.jpg', 10013,
['25\'\' (XL) ']
]
,
['F250 EFi (Blue Whale)',250,'Y250-4 (Selva).jpg', 10011,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [427, 'Y130-4', 14, 4, 2014, 2025, 4, 0, 1, 1, 1,
[
['30XS E.F.I. (Spearfish) (de tuned F100)',30,'Spearfish 30XS.jpg', 12503,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40XS (Swordfish) (de tuned F100)',40,'Swordfish.jpg', 12500,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60XS (Spearfish)',60,'60 Spearfish.png', 12502,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp (SpearFish)',100,'Sreaprfish0.jpg', 12501,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 EFI (Swordfish)',115,'swordfishefi-1150.jpg', 12498,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115XSR EFI (Swordfish)',115,'115XSR.jpg', 12499,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [447, 'Y25-4LW', 14, 4, 2019, 2025, 2, 1, 1, 1, 1,
[
['25hp Amberjack',25,'Amberjack.png', 9997,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [448, 'Y9.9-4J or L', 14, 4, 2018, 2025, 2, 1, 1, 1, 1,
[
['RAY 8hp',8,'Ray.jpg', 10061,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['PIKE 9.9hp',9.9,'Pike.jpg', 10062,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [407, 'Y70-4', 14, 4, 2013, 2025, 4, 0, 0, 1, 1,
[
['20XS Dorado (de tuned 60hp)',20,'Dorado 20XS.jpg', 11084,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['30hp XS Dorado (de tuned 60hp)',30,'30 Dorado Xs.jpg', 11081,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['40XS Murena (de tuned 70hp)',40,'40 Murena.jpg', 11083,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50hp Dorado',50,'doradoefi-50.jpg', 11079,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60hp Dorado',60,'doradoefi-60xsr0.jpg', 11078,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['60XSR Dorado',60,'60XSR.jpg', 11082,
['20\'\' (Long)','Unsure - use overall height']
]
,
['70hp Murena',70,'murenaefi-70.jpg', 11080,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [359, 'Y70-2', 14, 2, 1999, 2025, 3, 0, 1, 1, 1,
[
['60hp',60,'Y70-2 (60 Selva).jpg', 5326,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['70hp',70,'Y70-2 (70 Selva).jpg', 5327,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [344, 'Y20-4', 14, 4, 2017, 2025, 2, 1, 1, 1, 1,
[
['15hp Wahoo',15,'Y20-4 (15 Selva).jpg', 10085,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp Wahoo',20,'Y20-4 (Selva).jpg', 10084,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [343, 'Y25-4', 14, 4, 2009, 2025, 2, 1, 1, 1, 1,
[
['15XS (Kingfish)',15,'15 Kingfish.jpg', 10087,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp (Kingfish)',25,'Y25-4 (Selva).jpg', 10086,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [342, 'Y40-4', 14, 4, 2009, 2025, 3, 0, 1, 1, 1,
[
['15XS (Aruana)',15,'Aruna 15.jpg', 10676,
['20\'\' (Long)','Unsure - use overall height']
]
,
['25XS (Aruana)',25,'25 Aruana.jpg', 10677,
['20\'\' (Long)','Unsure - use overall height']
]
,
['30hp (Aruana)',30,'30 Aruana.jpg', 10678,
['20\'\' (Long)','Unsure - use overall height']
]
,
['40hp (Aruana)',40,'Y40-4 (Selva).jpg', 10675,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [338, 'Y100-4', 14, 4, 1998, 2025, 4, 0, 1, 1, 1,
[
['30XS (Marlin)',30,'Marlin.png', 10051,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['50XS (Marlin)',50,'Marlin0.png', 10052,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['80hp E.F.I (Marlin)',80,'Y100-4 (80 Selva).jpg', 10049,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100XSR E.F.I (Marlin)',100,'Marlin XSR.jpg', 10050,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['100hp E.F.I (Marlin)',100,'Y100-4 (Selva).jpg', 10048,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [336, 'Y150-4', 14, 4, 1998, 2025, 6, 0, 1, 1, 1,
[
['150hp E.F.I (Killer Whale)',150,'Y150-4 (Selva).jpg', 10022,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [335, 'Y225-4', 14, 4, 1998, 2025, 6, 0, 1, 1, 1,
[
['200hp E.F.I (Grey Whale)',200,'Y225-4 (200 Selva).jpg', 6803,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp E.F.I (Fin Whale)',225,'Y225-4 (Selva).jpg', 6802,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [464, 'Y300-4 21', 14, 4, 2021, 2025, 6, 0, 0, 1, 1,
[
['F225 EFi Beaked Whale (4.2L V6)',225,'2250.jpg', 11496,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['F250 EFi Beaked Whale (4.2L V6)',250,'2500.jpg', 11497,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [204, 'JS6-4', 3, 4, 1998, 2020, 1, 1, 0, 1, 1,
[
['DF4',4,'DF4-LR.jpg', 13360,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF5',5,'DF5LR.jpg', 13362,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF6',6,'Suzuki_DF6-LR.jpg', 13361,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [87, 'JS115-4', 3, 4, 2003, 2015, 4, 0, 1, 1, 1,
[
['DF90',90,'Suzuki_DF90TL-LR.jpg', 12140,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF100',100,'DF100.jpg', 12142,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115',115,'Suzuki_DF115TL-LR.jpg', 12141,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [93, 'JS15-4', 3, 4, 1997, 2015, 2, 1, 1, 1, 1,
[
['DF9.9 (old shape)',9.9,'JS15-4 (9.9)1.gif', 7624,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height','High Thrust 20\'\' (Long)']
]
,
['DF9.9BTX (old shape)',9.9,'JS9.9-4 (9.9).gif', 7626,
['Unsure - use overall height','High Thrust 20\'\' (Long)']
]
,
['DF15 (old shape)',15,'DF15L_E01_web_40.jpg', 7625,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height','High Thrust 20\'\' (Long)']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [91, 'JS30-4', 3, 4, 2000, 2014, 3, 1, 1, 1, 1,
[
['DF25',25,'Suzuki DF25 (not twin).jpg', 6268,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF30',30,'Suzuki_DF30T-LR.jpg', 6269,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [286, 'S15-2', 3, 2, 2003, 2013, 2, 1, 0, 1, 1,
[
['DT9.9',9.9,'DT9_9-LR0.jpg', 5824,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT15',15,'DT15-LR.jpg', 5825,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [89, 'JES70-4', 3, 4, 1998, 2011, 4, 0, 0, 1, 1,
[
['DF60',60,'Suzuki_DF60-LR.jpg', 6991,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF70',70,'Suzuki_DF70T-LR2.jpg', 6992,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [90, 'JES50-4', 3, 4, 1999, 2010, 3, 0, 1, 1, 1,
[
['DF40',40,'Suzuki_DF40T-LR.jpg', 4903,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF50',50,'Suzuki_DF40T-LR0.jpg', 4904,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [283, 'S8-2', 3, 2, 1984, 2002, 2, 1, 1, 1, 1,
[
['DT6',6,'DT6_BW.jpg', 2655,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT8',8,'', 2656,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [282, 'S5-2', 3, 2, 1985, 2002, 1, 1, 0, 1, 1,
[
['DT4',4,'DT5.jpg', 2651,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT5',5,'DT50.jpg', 2652,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [96, 'S140-2', 3, 2, 1986, 2001, 4, 0, 1, 1, 1,
[
['DT115',115,'Dt140.jpeg', 6807,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT140',140,'Dt1400.jpeg', 6808,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [290, 'S85-2', 3, 2, 1984, 2000, 3, 1, 1, 0, 1,
[
['DT75',75,'S85-2.jpg', 10555,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT85',85,'S85-20.jpg', 10556,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [291, 'S100-2', 3, 2, 1989, 2000, 4, 0, 1, 1, 1,
[
['DT90',90,'', 6805,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT100',100,'', 6806,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [285, 'S15-2<98', 3, 2, 1986, 1998, 2, 1, 0, 1, 1,
[
['DT9.9',9.9,'', 2637,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT15',15,'', 2638,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [289, 'S65-2', 3, 2, 1985, 1997, 3, 1, 1, 1, 1,
[
['DT55',55,'DT65.gif', 5120,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT65',65,'DT650.gif', 5121,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [284, 'S15-2<86', 3, 2, 1970, 1986, 2, 1, 0, 1, 1,
[
['DT9.9',9.9,'', 2635,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT15',15,'', 2636,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [402, 'S200-4', 3, 4, 2014, 2025, 4, 0, 0, 1, 1,
[
['DF150A Black Motor - New Shape 4cyl - Red Decals',150,'DF200--Colour1.jpg', 13398,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF150A & AP White Motor - New Shape 4cyl',150,'DF150W.jpg', 13403,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF150A Stealth',150,'S200-4 Stealth (150).png', 13406,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF150AP Black Motor - New Shape 4cyl - Grey Decals',150,'DF1500.jpg', 13400,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF175A & AP White Motor - New Shape 4cy l',175,'DF175W.jpg', 13402,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF175A Black Motor - New Shape 4cyl - Red Decals',175,'DF175A.jpg', 13397,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF175AP Black Motor - New Shape 4cyl - Grey Decals',175,'DF175AP.jpg', 13399,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF200A & AP White Motor - New Shape 4cyl',200,'s200-4 White.jpg', 13401,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF200SS - New Shape 4cyl',200,'DF200SS.jpg', 13405,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF200A Stealth',200,'S200-4 Stealth (200).png', 13407,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF200AP Black Motor - New Shape 4cyl - Grey Decals',200,'DF200AP.jpg', 13404,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF200A Black Motor - New Shape 4cyl - Red Decals',200,'DF200--Colour.jpg', 13396,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [471, 'JS250-4W', 3, 4, 2003, 2025, 6, 0, 0, 1, 1,
[
['DF200 V6 - White Motor',200,'JS250-4-White-(200).jpg', 12182,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF225 V6 - White Motor',225,'JS250-4-White-(225).jpg', 12183,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250 V6 - White Motor',250,'JS250-4-White-(250).jpg', 12181,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [326, 'S60-4', 3, 4, 2010, 2025, 3, 0, 1, 1, 1,
[
['DF40A (New 2010) EFI',40,'DF40A0.jpg', 12760,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF50A (New 2010) EFI - Coloured Decals',50,'DF50A.gif', 12759,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF50A (New 2010) EFI - Grey Decals',50,'S60-4 Grey2.png', 12763,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF60A (New 2010) EFI - Coloured Decals',60,'S60-4 (60).jpg', 12758,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF60AV',60,'DF60AV.jpg', 12761,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF60A (New 2010) EFI - Grey Decals',60,'S60-4 Grey1.png', 12762,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [368, 'S20-4', 3, 4, 2012, 2025, 2, 1, 1, 1, 1,
[
['DF9.9B (must be DF9.9B)',9.9,'DF9.9bt f.jpg', 11793,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF15A',15,'DF15.jpg', 11791,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF20A',20,'DF20A_jpg_pagespeed_ic_X8oN70HeV9.jpg', 11792,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [458, 'S140-4 21', 3, 4, 2020, 2025, 4, 0, 0, 1, 1,
[
['DF100C 2L, 4cy BLACK 2022 Model ',100,'Df100C.jpg', 13382,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115B 2L, 4cy WHITE 2021 Model ',115,'DF115B White.png', 13381,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115B 2L, 4cy BLACK 2021 Model ',115,'S140-4 21(115).jpg', 13380,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115B Stealth',115,'S140-4 21 Stealth (115).png', 13383,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF140B 2L, 4cy BLACK 2021 Model ',140,'DF140B Black.png', 13378,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF140B 2L, 4cy WHITE 2021 Model ',140,'S140-4 21(140w).jpg', 13379,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [370, 'S140-4', 3, 4, 2012, 2025, 4, 0, 0, 1, 1,
[
['DF100A',100,'S140-4 (100)2.jpg', 11783,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115A (2021 Decals)',115,'DF140A 20210.jpg', 11785,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF115A ',115,'S140-4 (115)1.jpg', 11782,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF140A (2021 Decals)',140,'DF140A 2021.jpg', 11784,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF140A ',140,'S140-4 (140)1.jpg', 11781,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [422, 'S350-4', 3, 4, 2017, 2025, 6, 0, 0, 1, 1,
[
['DF300B Black Motor (New 2019 CHECK SHAPE)',300,'DF300B.png', 12254,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF325A Black Motor',325,'S350-4(325)0.jpg', 12253,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF350A Black Motor',350,'Suzuki 350hp both.jpg', 12252,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [413, 'S6-4', 3, 4, 2016, 2025, 1, 1, 0, 1, 1,
[
['DF4A',4,'Suzuki 6hp (S6-4)1.jpg', 11820,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF5A',5,'Suzuki 6hp (S6-4)0.jpg', 11819,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF6A',6,'Suzuki 6hp (S6-4).jpg', 11818,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [385, 'S15-2A', 3, 2, 2013, 2025, 2, 1, 1, 1, 1,
[
['DT9.9A (new model 2013)',9.9,'ResizeToFit400600-DT9.9a-suzuki2.jpg', 5822,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT15A (new model 2013)',15,'ResizeToFit400600-dt31.jpg', 5823,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [398, 'S30-4', 3, 4, 2014, 2025, 3, 1, 1, 1, 1,
[
['DF25A (New 2014)',25,'DF25A.jpg', 13186,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF30A (New 2014)',30,'DF30A.jpg', 13187,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [300, 'S9.9-4', 3, 4, 2009, 2025, 2, 1, 1, 1, 1,
[
['DF8A',8,'S9.9-4 (8).jpg', 11827,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DF9.9A',9.9,'S9.9-4.gif', 11828,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [288, 'S40-2', 3, 2, 1987, 2025, 2, 1, 1, 1, 1,
[
['DT35',35,'DT30-LR1.jpg', 6921,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT40c',40,'dt400.gif', 6923,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT40',40,'dt40.gif', 6922,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [63, 'JS250-4', 3, 4, 2003, 2025, 6, 0, 0, 1, 1,
[
['DF200 V6 - Black Motor - Red Decals',200,'JS250-4-Black-(200).jpg', 13548,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF200T - Black or White Motor (2025 Cowl)',200,'2025-V6-DF200.png', 13552,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF225 V6 - Black Motor - Red Decals',225,'JS250-4-Black-(225).jpg', 13549,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF225T - Black or White Motor (2025 Cowl)',225,'2025-V6-DF225.png', 13553,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250 V6 - Black Motor - Grey Decals',250,'JS250-4-Black-(250).jpg', 13550,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250 V6 - Black Motor - Red Decals',250,'JS250-4-Black-(250)0.jpg', 13551,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250T - Black or White Motor (2025 Cowl)',250,'2025-V6-DF250.png', 13554,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [86, 'JS140-4', 3, 4, 2003, 2025, 4, 0, 1, 1, 1,
[
['DF140 (Old Shape)',140,'1400.jpg', 8401,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [88, 'S100-4', 3, 4, 2008, 2025, 4, 0, 1, 1, 1,
[
['DF70A (1.5L)',70,'DF70A.jpg', 13508,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF75A (1.5L)',75,'DF75A.png', 13512,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF80A (1.5L)',80,'DF80A.jpg', 13509,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF90A (1.5L)',90,'DF90A.jpg', 13510,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF100B (1.5L)',100,'S90-4 (100).jpg', 13511,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [92, 'S25-4V', 3, 4, 2006, 2025, 2, 1, 1, 1, 1,
[
['DF25 V Twin',25,'Suzuki_DF25V.jpg', 5397,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [94, 'S250-2', 3, 2, 1990, 2025, 6, 0, 1, 1, 1,
[
['DT150 - 2.7 litre',150,'S250-210.jpg', 10518,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT200 - 2.7 litre',200,'S250-2.jpg', 10515,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT225 - 2.7 litre',225,'S250-20.jpg', 10516,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DT250 - 2.7 litre',250,'S250-21.jpg', 10517,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [202, 'JS175-4', 3, 4, 2005, 2025, 4, 0, 0, 1, 1,
[
['DF150 or DF150 Lean Burn',150,'JS175-4 all colours.bmp', 9074,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['DF175 or DF 175 Lean Burn',175,'JS175-4 all colours0.bmp', 9075,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [206, 'JS2.5-4', 3, 4, 1998, 2025, 1, 1, 0, 1, 1,
[
['DF2.5',2.5,'DF2.5.gif', 13146,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [62, 'S300-4', 3, 4, 2007, 2025, 6, 0, 1, 1, 1,
[
['DF250AP - Black Motor - Red Decals',250,'S300-4-(250BL).jpg', 11807,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250 SS',250,'DF250SS_2.jpg', 11808,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250AP - White Motor',250,'S300-4-(250W).jpg', 11809,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF250AP - Black Motor - Grey Decals',250,'S300-4-(250BL)1.jpg', 11811,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF300AP - Black Motor - Red Decals',300,'S300-4-(300BL).jpg', 11806,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF300AP - Black Motor - Grey Decals',300,'S300-4-(250BL)0.jpg', 11810,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF300AP - White Motor',300,'S300-4-(300W).jpg', 11812,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [287, 'S30-2', 3, 2, 1988, 2025, 2, 1, 1, 1, 1,
[
['DT25C',25,'DT30-LR.jpg', 8615,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT30C',30,'DT30-LR0.jpg', 8616,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT30L',30,'DT30-LR2.jpg', 8617,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['DT30C',30,'DT30 latest.png', 8618,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [472, 'S350-4W', 3, 4, 2017, 2025, 6, 0, 0, 1, 1,
[
['DF300B White Motor',300,'DF300B W.png', 12243,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF325A White Motor',325,'S350-4(325).jpg', 12244,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['DF350A White Motor',350,'Suzuki 350hp both0.jpg', 12245,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Suzuki ID plate.jpg', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [432, 'T20-4 18', 8, 4, 2017, 2024, 2, 1, 1, 1, 1,
[
['MFS9.9E FI (new from 2018 see image)',9.9,'MFS9.9_single.jpg', 13654,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS15E FI (new from 2018 see image)',15,'MFS15E.jpg', 13653,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS15D (new from 2017 see image)',15,'MFS20D.jpg', 13656,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS20D (new from 2017 see image)',20,'MFS20D2.png', 13655,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS20E FI (new from 2018 see image)',20,'MFS20E.jpg', 13652,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [409, 'M6-4', 8, 4, 2012, 2021, 1, 1, 0, 1, 1,
[
['4hp **CHECK MODEL IMAGE',4,'M6-4 NO Gas Cap.jpg', 13173,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['4hp **CHECK MODEL IMAGE (Gas/Fuel Cap at front)',4,'M6-4 Gas Cap.jpg', 13176,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp **CHECK MODEL IMAGE (Gas/Fuel Cap at front)',5,'M6-4 Gas Cap0.jpg', 13177,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp **CHECK MODEL IMAGE',5,'M6-4 NO Gas Cap0.jpg', 13174,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp **CHECK MODEL IMAGE (Gas/Fuel Cap at front)',6,'M6-4 Gas Cap1.jpg', 13178,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['6hp \'Sail Pro\' **NO Fuel cap on top CHECK MODEL IMAGE',6,'Sailpro.jpg', 13179,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['6hp **CHECK MODEL IMAGE',6,'M6-4 NO Gas Cap1.jpg', 13175,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [121, 'M6-4 Old', 8, 4, 2002, 2013, 1, 1, 0, 1, 1,
[
['MFS 4 older shape (no internal tank)',4,'M6-4 Old.jpg', 7259,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS 4 older shape (gas/fuel cap at rear)',4,'M6-4 Old with gas.jpg', 7256,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS 5 older shape (gas/fuel cap at rear)',5,'M6-4 Old with gas0.jpg', 7257,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS 5 older shape (no internal tank)',5,'M6-4 Old0.jpg', 7260,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS 6 older shape (no internal tank)',6,'M6-4 Old1.jpg', 7261,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS 6 older shape (gas/fuel cap at rear)',6,'M6-4 Old with gas1.jpg', 7258,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [100, 'T90-2TLDI <2010', 8, 2, 2000, 2010, 3, 0, 1, 1, 1,
[
['MD70 TLDI (old shape not current)',70,'T90-2TLDI less than 2010 (70hp both).gif', 9934,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MD90 TLDI (old shape not current)',90,'T90-2TLDI less than 2010 (90hp both).gif', 9935,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [410, 'T60-4', 8, 4, 2014, 2025, 3, 0, 0, 1, 1,
[
['MFS40',40,'T50-4 (40).jpg', 13374,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS50',50,'T50-4 (50).jpg', 13373,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS60A (note shape of motor)',60,'T60-4(60).jpg', 13375,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [392, 'H60-4V', 8, 4, 2013, 2025, 3, 0, 1, 1, 1,
[
['BFT60A',60,'BFT60_0.jpg', 6055,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [387, 'T90-2TLDI', 8, 2, 2010, 2025, 3, 0, 1, 1, 1,
[
['MD75 TLDI (New shape)',75,'T90-2TLDI (75).jpg', 5844,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MD90 TLDI (New shape)',90,'T90-2 TLDI (90).jpg', 5845,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [393, 'H100-4V', 8, 4, 2013, 2025, 4, 0, 1, 1, 1,
[
['BF75A (With or without tiller)',75,'BFT75.jpg', 12020,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BF90A (With or without tiller)',90,'BF900.jpg', 12021,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [382, 'H150-4V', 8, 4, 2013, 2025, 4, 0, 1, 1, 1,
[
['BFT115A',115,'bft115.jpg', 9762,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BFT150A',150,'BFT1500.jpg', 9761,
['25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [381, 'H225-4V', 8, 4, 2013, 2025, 6, 0, 1, 1, 1,
[
['BFT175A',175,'BFT75A.jpg', 6543,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BFT200A',200,'BFT200.jpg', 6542,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BFT225A',225,'BFT225_00.jpg', 6541,
['25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [98, 'T140-2', 8, 2, 2000, 2025, 4, 0, 1, 1, 1,
[
['M115',115,'M-115A2-01.gif', 6822,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['M120',120,'M-140A2-01.gif', 6823,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['M140',140,'M-140A2-010.gif', 6824,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [411, 'T30-4 19', 8, 4, 2015, 2025, 3, 1, 1, 1, 1,
[
['MFS25C ++NOT D Model Version',25,'t30-4 mfs250.jpg', 12139,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS30C ++NOT D Model Version',30,'T30-4 MFS30.jpg', 12138,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [428, 'T9.8-4 18', 8, 4, 2017, 2025, 2, 1, 1, 1, 1,
[
['MFS8 (New 2017) NO PATTERN',8,'Tohatsu 9.80.jpg', 13651,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS9.8 (New 2017) NO PATTERN',9.8,'Tohatsu 9.8.jpg', 13650,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [440, 'H100-4A', 8, 4, 2017, 2025, 4, 0, 0, 1, 1,
[
['BFT75 DK4 - NEW Late 2017',75,'BFT750.jpg', 9059,
['20\'\' (Long)','Unsure - use overall height']
]
,
['BFT80 AK1 - NEW Feb 2018',80,'BFT80.jpg', 9060,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BFT90 DK5 - NEW Late 2017',90,'BFT90.jpg', 9061,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['BFT100 AK1 - NEW Late 2017',100,'BFT100.jpg', 9062,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [462, 'H250-4V 19', 8, 4, 2020, 2025, 6, 0, 0, 1, 1,
[
['BFT200A/D (3.6L V6 - 2020 release, check image)',200,'BFT200A.jpg', 11478,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['BFT225A/D (3.6L V6 - 2020 release, check image)',225,'BFT225A.jpg', 11477,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['BFT250A/D (3.6L V6 - 2020 release, check image)',250,'BFT250A.jpg', 11476,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [463, 'T6-4', 8, 4, 2021, 2025, 1, 0, 0, 0, 0,
[
['MFS4C (NOT AVAILABLE AS YET)',4,'T6-4 (4hp).jpg', 13647,
['15\'\' (Short)','20\'\' (Long)']
]
,
['MFS5C (NOT AVAILABLE AS YET)',5,'T6-4 (5hp).jpg', 13648,
['15\'\' (Short)','20\'\' (Long)']
]
,
['MFS6C (NOT AVAILABLE AS YET)',6,'T6-4 (6hp).jpg', 13649,
['15\'\' (Short)','20\'\' (Long)']
]
],
0, '', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [466, 'T140-4 21', 8, 4, 2021, 2025, 4, 0, 0, 1, 1,
[
['MFS75A (1995cc)',75,'T140-4 21(75).jpg', 12802,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS90A (1995cc)',90,'T140-4 21(90).jpg', 12801,
['20\'\' (Long)','Unsure - use overall height']
]
,
['MFS100A (1995cc)',100,'T140-4 21(100).jpg', 12800,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS115A (1995cc) Blue or White',115,'T140-4 21(115).jpg', 12799,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS140A (1995cc) Blue or White',140,'T140-4 21(140).jpg', 12798,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [469, 'H150-4 22', 8, 4, 2022, 2025, 4, 0, 0, 1, 1,
[
['BFT150D (2.4L 16V, 2022 design)',150,'BFT150D.jpg', 12122,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [470, 'T30-4 23', 8, 4, 2022, 2025, 3, 1, 1, 0, 1,
[
['MFS25D - Please check model image',25,'mfs25d.png', 13149,
['15\'\' (Short)','20\'\' (Long)']
]
,
['MFS30D - Please check model image',30,'MFS30D.png', 13150,
['15\'\' (Short)','20\'\' (Long)']
]
],
0, '', 0, 1, 0, 0, 0, 0
]
motors[motors.length] = [374, 'T9.8-4', 8, 4, 1998, 2025, 2, 1, 1, 1, 1,
[
['MFS 8hp',8,'MFS--8A3-01.gif', 8605,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS 9.8hp',9.8,'MFS--9.8a3-010.gif', 8604,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [364, 'T5-2', 8, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['4hp',4,'M 4B.jpg', 5369,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5hp',5,'M 5B.jpg', 5370,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [99, 'T115-2TLDi', 8, 2, 2006, 2025, 4, 0, 1, 1, 1,
[
['MD115 TLDi',115,'eng115lrg.jpg', 6821,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [101, 'T90-2', 8, 2, 1998, 2025, 3, 0, 1, 1, 1,
[
['M90',90,'M--90A-01.gif', 2669,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [102, 'T70-2', 8, 2, 1998, 2025, 3, 0, 1, 1, 1,
[
['M60',60,'MD-70B-01.gif', 2667,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['M70',70,'MD-70B-010.gif', 2668,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [103, 'T50-2TLDI', 8, 2, 2003, 2025, 3, 0, 1, 1, 1,
[
['MD30B TLDI',30,'T50-2TLDI (30).jpg', 10322,
['15\'\' (Short)','20\'\' (Long)']
]
,
['MD40B TLDI (new 2012)',40,'T50-2TLDI (40)0.jpg', 10321,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MD50 TLDI',50,'MD-50B-01.gif', 10320,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [104, 'MT50-2P', 8, 2, 1992, 2025, 3, 1, 0, 1, 1,
[
['M40 Pull & or Elect start',40,'MT50-2 (40).jpg', 9482,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['M50 Pull & or Elect start',50,'MT50-2 (50).gif', 9483,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [107, 'MT50-2', 8, 2, 1992, 2025, 3, 0, 1, 1, 1,
[
['M40 No pull start',40,'MT50-2 (40)0.jpg', 9480,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['M50 No pull start',50,'MT50-2 (50)0.gif', 9481,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [110, 'T40C-2', 8, 2, 1996, 2025, 1, 1, 1, 1, 1,
[
['M40 C',40,'T40C-2.jpg', 4818,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [111, 'MT30-2', 8, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['M25',25,'MT30-2(25).jpg', 5349,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['M30',30,'MT30-2.jpg', 5350,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [114, 'MT20-4', 8, 4, 2004, 2025, 2, 1, 1, 1, 1,
[
['MFS15 (old shape)',15,'MFS-15B2-01.gif', 7629,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS18 (old shape)',18,'MFS-18B2-01.gif', 7630,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['MFS20 (old shape)',20,'MFS-18B2-010.gif', 7631,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [116, 'MT9.8-2', 8, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['6hp (Jap Made)',6,'M 6B.jpg', 5513,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp (Jap Made)',8,'M 8B.jpg', 5514,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.8hp (Jap Made)',9.8,'M 9.8b.jpg', 5515,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [118, 'MT18-2', 8, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['9.9hp (Jap Made)',9.9,'M9.9.jpg', 5337,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp (Jap Made)',15,'M15.jpg', 5338,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['18hp (Jap Made)',18,'M 18E2.jpg', 5339,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['20hp (Jap Made) (UK Only)',20,'M 18E20.jpg', 5340,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [120, 'T3.5-2', 8, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['M2.5',2.5,'M 2.5a21.jpg', 5357,
['15\'\' (Short)','Unsure - use overall height']
]
,
['M3.5 ',3.5,'M 3.5b21.jpg', 5358,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [311, 'T30-4', 8, 4, 2004, 2025, 3, 1, 1, 1, 1,
[
['25 EFI',25,'T30-4 (25).jpg', 4297,
['15\'\' (Short)','20\'\' (Long)']
]
,
['30 EFI',30,'T30-4 (30).jpg', 4298,
['15\'\' (Short)','20\'\' (Long)']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [320, 'M3.5-4', 8, 4, 2007, 2025, 1, 1, 0, 1, 1,
[
['2.5hp',2.5,'M3.5-4 (2.5)1.jpg', 5454,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.0hp',3,'M3.5-4 (3.0).jpg', 5456,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.3hp',3.3,'M3.5-4 (3.3)1.jpg', 5455,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['3.5hp',3.5,'M3.5-4 (3.5).gif', 5453,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [351, 'T50-2MF', 8, 2, 2006, 2025, 3, 1, 0, 1, 1,
[
['50hp Multifuel - Deisel/Petrol model',50,'T50-2MF.jpg', 4910,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [380, 'H250-4V', 8, 4, 2013, 2025, 6, 0, 1, 1, 1,
[
['BFT250',250,'BFT250.jpg', 11448,
['25\'\' (XL) ','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [484, 'T9.9-4 24', 8, 4, 2024, 2025, 2, 1, 0, 1, 1,
[
['MFS6CZ (EFI) New 2024 (COMING SOON)',6,'T9.9-4 24 (6).jpg', 13657,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS8C (EFI) New 2024 (COMING SOON)',8,'T9.9-4 24 (8).jpg', 13658,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['MFS9.9CY (EFI) New 2024 (COMING SOON)',9.9,'T9.9-4 24 (9.9).jpg', 13659,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, '', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [371, 'Y200-4', 1, 4, 2013, 2023, 4, 0, 0, 1, 1,
[
['F150 (4 Cyl) - **MUST check image**',150,'Y200-4 old web1.gif', 13641,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['SHO VF150 In Line 4 Cyl (2.8L) **MUST check image**',150,'Y200-4 SHO (150).jpg', 13639,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F150 Jet (105Hp Splash Cover Only) **MUST check image**',150,'Y150-4 Jet 2024.jpg', 13643,
['Unsure - use overall height']
]
,
['SHO VF175 Vmax (2.8L) **MUST check image**',175,'Y175-4SHO (175)2.png', 13642,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F175 (4 Cyl) - **MUST check image**',175,'Y200-4 old web0.gif', 13640,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F200 (4 Cyl) - **MUST check image**',200,'Y200-4 old web.gif', 13638,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 1, 0
]
motors[motors.length] = [354, 'Y25-4P', 1, 4, 2009, 2017, 2, 1, 1, 1, 1,
[
['F25DMH',25,'Y25-4SP4.jpg', 7760,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [131, 'Y25-4E', 1, 4, 2009, 2017, 2, 1, 1, 1, 1,
[
['FT25FET (High Thrust Leg)',25,'Y25-4 (HT)1.jpg', 7758,
['Unsure - use overall height','High Thrust 20\'\' (Long)']
]
,
['F25DET',25,'Y25-44.jpg', 7757,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F25DEHT',25,'Y25-4 (both).jpg', 7756,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT25FEX (High Thrust Leg)',25,'Y25-4 (HT)2.jpg', 7759,
['Unsure - use overall height','High Thrust 25\'\' (XL)']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [123, 'Y150-4', 1, 4, 1998, 2016, 4, 0, 0, 1, 1,
[
['F150A or F150B Older Shape 4 Cyl air intake on rear',150,'Y150-42.jpg', 13637,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [357, 'Y115-4A', 1, 4, 2011, 2014, 4, 0, 1, 1, 1,
[
['F115A No Front Vents see image',115,'Y115-4B.jpg', 7384,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [124, 'Y115-4', 1, 4, 1998, 2014, 4, 0, 1, 1, 1,
[
['F115 - Front Vents & Rear see image',115,'Y115-4 (showing vents)0.jpg', 13184,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [126, 'Y60-4', 1, 4, 1998, 2013, 4, 0, 1, 1, 1,
[
['F50C',50,'Y60-4(50).jpg', 9729,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['FT60 High Thrust Leg',60,'Y60-40.gif', 9728,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F60A, F60B or F60C',60,'Y60-4.gif', 9727,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [310, 'Y9.9-4SP', 1, 4, 1998, 2013, 2, 1, 1, 1, 1,
[
['F6 - Forward Controls',6,'Y9.9-4 (6)0.jpg', 5925,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT8 High Thrust - Forward Controls',8,'y9.9-4 (8) ht0.jpg', 5923,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F8 - Forward Controls',8,'Y9.9-4 (8)3.jpg', 5924,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT9.9 (From mid 2007) High Thrust - Forward Controls',9.9,'Y9.9-4sp (9.9)2.jpg', 5926,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F9.9 (From mid 2007) Forward Controls',9.9,'Y9.9-4sp (9.9).gif', 5922,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [390, 'Y50-4', 1, 4, 2005, 2012, 4, 0, 1, 1, 1,
[
['FT50FET or FT50FEHT (high thrust leg)',50,'Y50-4 (50)2.gif', 10127,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F50FET or F50FEHT',50,'Y50-4 (50)1.gif', 10126,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [171, 'Y9.9-4', 1, 4, 1998, 2010, 2, 1, 1, 1, 1,
[
['F6',6,'Y9.9-4 (6).jpg', 6035,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F8',8,'Y9.9-4 (8)2.jpg', 6036,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT8 High Thrust',8,'y9.9-4 (8) ht.jpg', 6037,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F9.9 (Current from mid 2007)',9.9,'Y9.9-4 (9.9)1.gif', 6038,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT9.9 (Current from mid 2007) High Thrust',9.9,'Y9.9-4 (9.9) ht1.jpg', 6039,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [7, 'Y4-4', 1, 4, 1998, 2010, 1, 1, 1, 1, 1,
[
['F4A (not F4B)',4,'Y4-4.jpg', 4847,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [129, 'Y40-4E<2008', 1, 4, 1998, 2009, 3, 0, 1, 1, 1,
[
['F30A',30,'Y40-4-2008 (30).jpg', 11303,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F40D (High Thrust Leg)',40,'Y40-4-2008 (40)0.jpg', 11305,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F40A or F40B- No Pull Start Elec Only',40,'Y40-4-2008 (40).jpg', 11304,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [130, 'Y40-4P<2008', 1, 4, 1998, 2009, 3, 1, 1, 1, 1,
[
['F30A (Pull/Electric start)',30,'Y40-4PS (30).jpg', 5115,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F40D (Pull/Electric start) High Thrust Leg',40,'Y40-4PS (40)0.jpg', 5117,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F40A or F40B (Pull/Electric start)',40,'Y40-4PS (40).jpg', 5116,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [389, 'Y25-4P<2008', 1, 4, 1998, 2009, 2, 1, 1, 1, 1,
[
['F20A',20,'Y25-4 (20)0.jpg', 13144,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F25A or B (pull start & or electric start)',25,'Y25-41.jpg', 13143,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [309, 'Y25-4E<2008', 1, 4, 1998, 2009, 2, 0, 1, 1, 1,
[
['FT25A or B (electric start only)',25,'Y25-4 (HT).jpg', 13142,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F25A or B (electric start only)',25,'Y25-41.jpg', 13141,
['15\'\' (Short)','20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [169, 'Y15-4', 1, 4, 1998, 2008, 2, 1, 1, 1, 1,
[
['FT9.9 (old shape) High Thrust',9.9,'Y15-4 (Front view High Thrust)4.gif', 13135,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F9.9 (old shape)',9.9,'Y15-4 (9.9 & 15hp)4.gif', 13134,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT15 (old shape) High Thrust',15,'Y15-4 (Front view High Thrust)6.gif', 13137,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F15 (old shape)',15,'Y15-4 (9.9 & 15hp)6.gif', 13136,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [176, 'Y200-2HPDI', 1, 2, 1998, 2008, 6, 0, 1, 1, 1,
[
['150HPDI Older shape',150,'Y200-2HPDI2.jpg', 8347,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['175HPDI Older shape',175,'Y200-2HPDI3.jpg', 8348,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['200HPDI Older shape',200,'Y200-2HPDI4.jpg', 8349,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [122, 'Y225-4', 1, 4, 1998, 2006, 6, 0, 1, 1, 1,
[
['F200A Only V6 not current shape',200,'Y225-4 (200).jpg', 7762,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['F225A Only V6 not current shape',225,'Y225-4 (225).jpg', 7763,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [353, 'Y50-4<2005', 1, 4, 1995, 2006, 4, 1, 1, 1, 1,
[
['F40 Carby Model Pls Check',40,'Y50-4 (40)0.gif', 13663,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['FT50 Carby Model (High Thrust)',50,'Y50-4less 20053.jpg', 13666,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F50 Carby Model',50,'Y50-4less 20052.jpg', 13665,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F50 Carby Model Pls Check',50,'Y50-4less 20051.jpg', 13664,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [293, 'Y175-2V', 1, 2, 2000, 2006, 6, 0, 1, 1, 1,
[
['Vmax carb or OX66 2.6L NOT AVAILABLE ',150,'Y175-21.gif', 7720,
[]
]
,
['Vmax carb or OX66 2.6L NOT AVAILABLE ',175,'Y175-22.gif', 7721,
[]
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [173, 'Y300-2HPDI', 1, 2, 1998, 2005, 6, 0, 1, 1, 1,
[
['225 HPDI',225,'Y300-2HPDI.gif', 6878,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 HPDI',250,'Y300-2HPDI (250).jpg', 6879,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['275 HPDI',275,'Y300-2HPDI (250)0.jpg', 6880,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300 HPDI',300,'Y300-2HPDI (300).gif', 6881,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [179, 'Y140-2PB', 1, 2, 1982, 2004, 4, 0, 1, 1, 1,
[
['115hp Prec blend or CV',115,'Y140-2PB (both).gif', 10168,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115 Enduro',115,'Y115-2PB.jpeg', 10170,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['140hp Precision Blend',140,'Y140-2PB (both)0.gif', 10169,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [396, 'Y250-2OX66', 1, 2, 1996, 2002, 6, 0, 1, 0, 1,
[
['200hp - VMAX OX66 Carby 3.1 Litre (no 2nd colour available)',200,'Y250-2OX660.gif', 11775,
[]
]
,
['225hp - VMAX OX66 Carby 3.1 Litre (no 2nd colour available)',225,'Y250-2OX66.gif', 11774,
[]
]
,
['250hp - VMAX OX66 Carby 3.1 Litre (no 2nd colour available)',250,'Y250-2OX663.gif', 11776,
[]
]
],
0, 'Yamaha leg size 20130.gif', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [195, 'Y15-2D', 1, 2, 1983, 1995, 2, 1, 0, 1, 1,
[
['8hp Enduro',8,'e8d.jpg', 7906,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['9.9hp',9.9,'Y15-2D.gif', 7904,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp',15,'Y15-2D0.gif', 7905,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [178, 'Y200-2SWS<95', 1, 2, 1970, 1995, 6, 0, 1, 1, 1,
[
['150 V6 Old Shape',150,'Y200-2SWS 95back.gif', 7635,
['20\'\' (Long)','Unsure - use overall height']
]
,
['175 V6 Old Shape',175,'Y200-2SWS 95back0.gif', 7636,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200 V6 Old Shape',200,'Y200-2SWS 95back1.gif', 7637,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [189, 'Y40-2CV OLD', 1, 2, 1981, 1995, 2, 1, 1, 1, 1,
[
['30hp 1981-89',30,'Y40-2CV old1.gif', 7935,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp CV (confirm shape pls.)',40,'Y40-2CV old2.gif', 7936,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [175, 'Y250-2PB', 1, 2, 1986, 1990, 6, 0, 1, 1, 1,
[
['220hp Precision Blend 2.6lt',220,'Y250-2PB1.jpg', 6866,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['225hp Precision Blend 2.6lt',225,'Y250-2PB3.jpg', 6868,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250hp Precision Blend 2.6lt',250,'Y250-2PB2.jpg', 6867,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [196, 'Y15-2A', 1, 2, 1977, 1978, 2, 1, 1, 1, 1,
[
['9.9hp',9.9,'', 7458,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp',15,'', 7459,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [349, 'Y6-4', 1, 4, 2010, 2025, 2, 1, 0, 1, 1,
[
['F4B',4,'Y6-4 (F4B)1.jpg', 8170,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F5A',5,'Y6-4 (F5A)1.jpg', 8171,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F6C',6,'Y6-4 (6C)0.jpg', 8172,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [333, 'Y300-4', 1, 4, 2010, 2025, 6, 0, 1, 1, 1,
[
['F225XCA, LF225XCA, F225XB (4.2L V6) **CAUTION CHECK YOUR VERSION',225,'Y300-4 All1.png', 13547,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['F250XCA, LF250XCA, F250XB, F250UCA, LF250UCA (4.2L V6) **CHECK IMAGE',250,'Y300-4 All.png', 13545,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['F300B,F300XCA, F300XB, LF300XCA, F300-UCA, F300UCA (4.2L V6) **CHECK IMAGE',300,'Y300-4 All0.png', 13546,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [200, 'Y2-2', 1, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['2hp',2,'Y2-2.gif', 4069,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [327, 'Y70-4', 1, 4, 2010, 2025, 4, 0, 0, 1, 1,
[
['F40G OR H (Europe only)',40,'Y70-4 (40).png', 13671,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['FT50G (High Thrust)',50,'T50_3-4_port.jpg', 13675,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F50H',50,'Y70-4 (50).jpg', 13673,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F50LB',50,'Y70-4 (50)0.jpg', 13679,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F60LB or C',60,'Y70-4 (60)0.jpg', 13680,
['20\'\' (Long)','Unsure - use overall height']
]
,
['T60LB, T60XB (High Thrust)',60,'FT60LB0.jpg', 13678,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['FT60G (High Thrust)',60,'Y70-4 (60 HT).jpg', 13674,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['FT60LB (High Thrust)',60,'FT60LB.jpg', 13677,
['Unsure - use overall height','High Thrust 20\'\' (Long)']
]
,
['F60F ',60,'Y70-4 (60).jpg', 13672,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F60 Jet (40hp Splash Cover Only)',60,'Y60-4 60hp Jet 2024.jpg', 13681,
['Unsure - use overall height']
]
,
['F70LA or F70LX (20',70,'Y70-4 (70).jpg', 13670,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['FT70A (High Thrust)',70,'FT70.jpg', 13676,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [350, 'Y250-4SHO', 1, 4, 2011, 2025, 6, 0, 0, 1, 1,
[
['VF200 SHO Vmax (4.2L V6)',200,'SHO Old2.jpg', 12651,
['20\'\' (Long)','Unsure - use overall height']
]
,
['VF225 SHO Vmax (4.2L V6)',225,'SHO Old3.jpg', 12652,
['20\'\' (Long)','Unsure - use overall height']
]
,
['VF250 SHO Vmax (4.2L V6)',250,'SHO Old4.jpg', 12653,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [474, 'Y200-4 23', 1, 4, 2023, 2025, 4, 0, 1, 1, 1,
[
['F150 (4 Cyl) 2023 onwards New Cowl Shape **MUST check image**',150,'Y200-4-23-web.gif', 13644,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F175 (4 Cyl) 2023 onwards New Cowl Shape **MUST check image**',175,'Y200-4-23-web0.gif', 13645,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F200 (4 Cyl) 2023 onwards New Cowl Shape **MUST check image**',200,'Y200-4-23-web1.gif', 13646,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [459, 'Y250-4SHO 21', 1, 4, 2021, 2025, 6, 0, 0, 1, 1,
[
['VF200 SHO - NEW 2021 **Check IMAGE**',200,'SHO New.jpg', 13357,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['VF225 SHO - NEW 2021 **Check IMAGE**',225,'SHO New0.jpg', 13358,
['20\'\' (Long)','Unsure - use overall height']
]
,
['VF250 SHO - NEW 2021 **Check IMAGE**',250,'SHO New1.jpg', 13359,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [456, 'Y300-4 21', 1, 4, 2021, 2025, 6, 0, 0, 1, 1,
[
['New Shape F225 With or Without Integrated Steering Model Model (4.2L V6) ****CAUTION CHECK YOUR VERSION',225,'Y300-4 211.gif', 13182,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['New Shape F250 With or Without Integrated Steering Model Model (4.2L V6) **CHECK IMAGE',250,'Y300-4 210.gif', 13181,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['New Shape F300 With or Without Integrated Steering Model (4.2L V6) **CHECK IMAGE',300,'Y300-4 21.gif', 13180,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [450, 'Y450-4 (Y425-4)', 1, 4, 2018, 2025, 8, 0, 0, 1, 1,
[
['375hp - XTO, 32 Valve DOHC Direct V8',375,'Y425-4 (375).jpg', 12734,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['400hp - XTO, 32 Valve DOHC Direct V8 ',400,'XF400 V8.png', 12735,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['425hp - XTO, 32 Valve DOHC Direct V8 ',425,'Y425-4.jpg', 12733,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
,
['450hp - XTO, 32 Valve DOHC Direct V8 ',450,'Y425-4 (450).png', 12736,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [420, 'Y100-4 18', 1, 4, 2016, 2025, 4, 0, 1, 1, 1,
[
['F75LB New 2017 (1.8L)',75,'Y90-4 (75).jpg', 13564,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F80D New 2017 (1.8L)',80,'Y100-4 18(80).png', 13566,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F90 Jet (65hp Splash Cover Only)',90,'Y115-4 90hp Jet 2024.jpg', 13568,
['Unsure - use overall height']
]
,
['VF90 Vmax SHO (1.8L)',90,'VF90SHO0.jpg', 13567,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F90LB or F90XB NEW 2017 (1.8L)',90,'Y90-40.jpg', 13563,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F100F New 2017 (1.8L)',100,'F100F0.jpg', 13565,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 1, 0
]
motors[motors.length] = [415, 'Y130-4SHO', 1, 4, 2015, 2025, 4, 0, 0, 1, 1,
[
['VF115 Vmax SHO (1.8L)',115,'115SHO.jpg', 13569,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [421, 'Y25-4LWP or E', 1, 4, 2017, 2025, 2, 1, 1, 1, 1,
[
['F20G New Light Weight ',20,'Y25-4LW (20)6.jpg', 12164,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F20SWPB, F20LWPB New Light weight',20,'Y25-4LW (20)4.jpg', 12160,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F20SMHB, F20LMHB New Light weight ',20,'Y25-4LW (20)3.jpg', 12159,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F25LW****',25,'F25.png', 12166,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['T25LWTC, T25XWTC New Light Weight',25,'Y25-4 (LW 2017)6.jpg', 12163,
['Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F25SWC, F25LC New Light Weight',25,'Y25-4 (LW 2017)4.jpg', 12162,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F25SMHC, F25LMHC New Light Weight',25,'Y25-4 (LW 2017)3.jpg', 12161,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F25G New Light Weight ',25,'Y25-4 (LW 2017)5.jpg', 12165,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [125, 'Y100-4', 1, 4, 1998, 2025, 4, 0, 1, 1, 1,
[
['F90 (Jet no Full cover Avail) (1.6L)',65,'Y100-4 (F90 Jet).jpg', 10105,
['Unsure - use overall height']
]
,
['F75A/B (1.6L)',75,'Y100-4 (75).gif', 10101,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F80A/B (1.6L)',80,'Y100-4 (80)1.jpg', 10102,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F90A/B (1.6L)',90,'Y100-4 (90)0.jpg', 10103,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F100 or FT100 (1.6L)',100,'Y100-4 (100)0.jpg', 10104,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [391, 'Y130-4', 1, 4, 2014, 2025, 4, 0, 0, 1, 1,
[
['F115 Jet (80hp Splash Cover only)',115,'Y115-4 115 Jet 2024.jpg', 13469,
['Unsure - use overall height']
]
,
['F115B (1.8L) Latest model new shape 2014 ',115,'Y115-4B (115).jpg', 13467,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['F130A (1.8L) Latest model new shape 2015',130,'F130A.jpg', 13468,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 1, 0
]
motors[motors.length] = [379, 'Y9.9-4J or L', 1, 4, 2013, 2025, 2, 1, 1, 1, 1,
[
['F8 New Late 2013',8,'Y9.9-4j (8).jpg', 10055,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['FT9.9L High Thrust New Late 2013',9.9,'Y9.9-4l.jpg', 10054,
['High Thrust 15\'\' (Short)','Unsure - use overall height','High Thrust 20\'\' (Long)','High Thrust 25\'\' (XL)']
]
,
['F9.9J New Late 2013',9.9,'Y9.9-4j.jpg', 10053,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [367, 'YD27', 1, 4, 0, 2025, 3, 0, 1, 0, 1,
[
['Yanmar D27 Diesel Outboard',27,'YD27.jpg', 5380,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 0, 1, 0, 0, 0, 0
]
motors[motors.length] = [478, 'Y350-4 24', 1, 4, 2024, 2025, 6, 0, 0, 0, 1,
[
['F350 V6 Model 4.3L',350,'F350-V6.png', 13525,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height','35\'\' (Ultra Ultra Long)']
]
],
0, 'Yamaha leg size 20130.gif', 0, 0, 0, 0, 0, 0
]
motors[motors.length] = [199, 'Y3-2', 1, 2, 1998, 2025, 1, 1, 0, 1, 1,
[
['3hp',3,'Y3-2.jpg', 6313,
['15\'\' (Short)','Unsure - use overall height']
]
,
['Malta',3,'Malta.jpg', 6314,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [182, 'Y85-2END', 1, 2, 1998, 2025, 3, 1, 1, 1, 1,
[
['75hp Enduro',75,'Y85-2END (75).jpg', 2737,
['20\'\' (Long)','Unsure - use overall height']
]
,
['85hp Enduro',85,'Y85-2END (85).jpg', 2738,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [181, 'Y90-2', 1, 2, 1986, 2025, 3, 0, 1, 1, 1,
[
['80hp',80,'80.jpg', 6915,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['90hp',90,'Y90-2.jpg', 6914,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [180, 'Y140-2SWS', 1, 2, 1990, 2025, 4, 0, 1, 1, 1,
[
['100hp Pro V USA model',100,'Y140-2SWS (100 USA model).jpg', 7272,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp SWS or PB',115,'Y140-2SWS (115)0.jpg', 7268,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['115hp CV',115,'Y140-2SWS (115).jpg', 7267,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['130hp SWS or PB',130,'Y140-2SWS (130).jpg', 7269,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['135hp SWS or PB',135,'Y140-2SWS (135).jpg', 7270,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['140hp SWS or PB',140,'Y140-2SWS (140).jpg', 7271,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [177, 'Y200-2SWS', 1, 2, 1992, 2025, 6, 0, 1, 1, 1,
[
['150hp V6 Saltwater or Precision Blend',150,'Y200-2SWS (150).jpg', 13419,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['150hp V6 Stripe Decals (see image)',150,'y200-2sws stripe.jpg', 13422,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp V6 Saltwater or Precision Blend',175,'Y200-2SWS (175)0.jpg', 13420,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175hp V6 Stripe Decals (see image)',175,'y200-2sws stripe0.jpg', 13423,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200hp V6 Saltwater or Precision Blend',200,'Y200-2SWS (200)5.jpg', 13421,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200hp V6 Stripe Decals (see image)',200,'y200-2sws stripe1.jpg', 13424,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [174, 'Y250-2SWS', 1, 2, 1990, 2025, 6, 0, 1, 1, 1,
[
['225hp VX or OX66 or SWS 2 (inj)',225,'Y250-2SWS (VX & OX66).jpg', 6869,
['25\'\' (XL) ','30\'\' (Ultra Long) ']
]
,
['250hp VX or OX66 or SWS 2 (inj)',250,'Y250-2SWS (VX & OX66)0.jpg', 6870,
['25\'\' (XL) ','30\'\' (Ultra Long) ']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [172, 'Y2.5-4', 1, 4, 1998, 2025, 1, 1, 0, 1, 1,
[
['F2.5 (Old Shape) CHECK IMAGE',2.5,'Y2.5-4.jpg', 10524,
['15\'\' (Short)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [1, 'Y300-2V', 1, 2, 2005, 2025, 6, 0, 1, 1, 1,
[
['200 V Max Series 2 - 3.3 Litre',200,'Y300-2 (Series 2).jpg', 8215,
['20\'\' (Long)','Unsure - use overall height']
]
,
['225 V Max Series 2 - 3.3 Litre',225,'Y300-2 (Series 2)0.jpg', 8216,
['20\'\' (Long)','Unsure - use overall height']
]
,
['225 V MAX FETO hpdi 3.3 Litre',225,'Y300-2V.jpg', 8212,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 V MAX FETO hpdi 3.3 Litre',250,'Y300-2V0.jpg', 8213,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['250 V Max Series 2 - 3.3 Litre',250,'Y300-2 (Series 2)1.jpg', 8217,
['20\'\' (Long)','Unsure - use overall height']
]
,
['300 V MAX FETO hpdi 3.3 Litre',300,'Y300-2V1.jpg', 8214,
['20\'\' (Long)','25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['300 V Max Series 2 - 3.3 Litre',300,'Y300-2 (Series 2)2.jpg', 8218,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [132, 'Y20-4', 1, 4, 2007, 2025, 2, 1, 1, 1, 1,
[
['F15C',15,'Y20-4 (15).jpg', 11756,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F15SEHA',15,'F15SMHA.jpg', 11766,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F20LMHA',20,'Y-F20MSH0.jpg', 11759,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F20SMHA',20,'Y-F20MSH.jpg', 11758,
['15\'\' (Short)','Unsure - use overall height']
]
,
['F20B',20,'Y20-4 (20).jpg', 11757,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['F20LEA',20,'Y-F20MSH5.jpg', 11764,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F20SEHA',20,'Y-F20MSH1.jpg', 11760,
['15\'\' (Short)','Unsure - use overall height']
]
,
['F20LEHA',20,'Y-F20MSH2.jpg', 11761,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F20LPHA',20,'Y-F20MSH3.jpg', 11762,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F20SEA',20,'Y-F20MSH4.jpg', 11763,
['15\'\' (Short)','Unsure - use overall height']
]
,
['F20LPA',20,'Y-F20MSH6.jpg', 11765,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [128, 'Y40-4', 1, 4, 2009, 2025, 3, 0, 1, 1, 1,
[
['F30B, F30LA (EFI)',30,'Y40-4 09 (30).jpg', 13489,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F40LA, F40LHA or F40LEHA',40,'Y40-40.jpg', 13490,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F40 Jet (30hp Splash Cover Only)',40,'Y40-4 40hp Jet 2024.jpg', 13491,
['Unsure - use overall height']
]
,
['F40F (EFI)',40,'Y40-4 09.jpg', 13488,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 1, 0
]
motors[motors.length] = [6, 'Y200-2V', 1, 2, 2003, 2025, 6, 0, 1, 1, 1,
[
['150 V Max/ HPDI - 2.6 litre',150,'Y200-2V (150).jpg', 6850,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['175 V Max/ HPDI - 2.6 litre',175,'Y200-2V (175).jpg', 6851,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
,
['200 V Max/ HPDI - 2.6 litre',200,'Y200-2V (200).jpg', 6852,
['20\'\' (Long)','25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [5, 'Y250-4', 1, 4, 2004, 2025, 6, 0, 0, 1, 1,
[
['F200XA, LF200XA, F200C - 3.3L V6',200,'Y250-4 (F200C).jpg', 11447,
['25\'\' (XL) ','Unsure - use overall height']
]
,
['F225XA/ TX or F225XA Sports in EU - 3.3L V6',225,'Y250-4 (225).gif', 11445,
['20\'\' (Long)','Unsure - use overall height']
]
,
['F250XA/TX, LF250XA 3.3L V6',250,'Y250-40.jpg', 11446,
['25\'\' (XL) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
motors[motors.length] = [183, 'Y85-2CV', 1, 2, 1998, 2025, 3, 0, 1, 1, 1,
[
['75hp CV',75,'Y85-2CV (75).jpg', 5948,
['20\'\' (Long)','Unsure - use overall height']
]
,
['85hp CV',85,'Y85-2CV (75)0.jpg', 5949,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [184, 'Y70-2', 1, 2, 1986, 2025, 3, 0, 1, 1, 1,
[
['50hp CV',50,'Y70-2 (50CV).jpg', 10471,
['20\'\' (Long)','Unsure - use overall height']
]
,
['60hp (FETO)',60,'Y70-2 (60).jpg', 10472,
['20\'\' (Long)','Unsure - use overall height']
]
,
['60hp CV',60,'Y70-2 (60CV).jpg', 10473,
['20\'\' (Long)','Unsure - use overall height']
]
,
['70hp',70,'Y70-2 (70).jpg', 10474,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [198, 'Y5-2', 1, 2, 1982, 2025, 1, 1, 0, 1, 1,
[
['4AMH (4hp)',4,'Y5-2 (4).jpg', 5936,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['5CMH (5hp)',5,'Y5-2 (5)0.jpg', 5937,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
1, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [197, 'Y8-2', 1, 2, 1998, 2025, 2, 1, 0, 1, 1,
[
['6hp ',6,'Y8-2 (6).jpg', 3769,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['8hp',8,'Y8-2 (8).jpg', 3770,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [194, 'Y15-2', 1, 2, 1996, 2025, 2, 1, 0, 1, 1,
[
['9.9hp FMH',9.9,'Y15-2 (9.9).jpg', 11510,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp FMH',15,'Y15-2 (15).jpg', 11511,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['15hp Enduro - NOT AVAILABLE',15,'y15-2 Enduro.jpg', 11512,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [193, 'Y25-2', 1, 2, 1988, 2025, 2, 1, 1, 1, 1,
[
['20hp Twin Carb',20,'Y25-2 (20).jpg', 7460,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp Twin Carb',25,'Y25-2 (25).jpg', 7461,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [192, 'Y30-2CV', 1, 2, 1998, 2025, 2, 1, 1, 1, 1,
[
['25hp Enduro',25,'Y30-2CV (25 END).jpg', 5935,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['25hp CV',25,'Y30-2CV (25).jpg', 5933,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['30hp CV',30,'Y30-2CV (30).jpg', 5934,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [191, 'Y30-2P', 1, 2, 1993, 2025, 3, 1, 1, 1, 1,
[
['30hp DMH (Pull Start)',30,'Y30-2P.jpg', 10520,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [190, 'Y30-2', 1, 2, 1993, 2025, 3, 1, 1, 1, 1,
[
['30hp DETO',30,'Y30-2.gif', 2691,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [188, 'Y40-2CV', 1, 2, 1995, 2025, 2, 1, 1, 1, 1,
[
['40hp Enduro ',40,'Y40-2END.jpg', 4976,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
,
['40hp CV',40,'Y40-2CV.jpg', 4975,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [187, 'Y50-2', 1, 2, 1984, 2025, 3, 0, 1, 1, 1,
[
['40VWHTO (NO Pull Start)',40,'Y50-2 (40)1.jpg', 9659,
['20\'\' (Long)','Unsure - use overall height']
]
,
['40VETO/ YETO (NO Pull Start)',40,'Y50-2 (40).jpg', 9657,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50HETO (NO Pull Start)',50,'Y50-2 (50).gif', 9658,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50HWHTOL (NO Pull Start)',50,'Y50-2 (50)0.gif', 9660,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [186, 'Y50-2P', 1, 2, 1984, 2025, 3, 1, 1, 1, 1,
[
['40VWHTO (Elect & Pull Start)',40,'Y50-2P (40)1.jpg', 5946,
['20\'\' (Long)','Unsure - use overall height']
]
,
['40VMHD (Pull start only)',40,'Y50-2P (40).jpg', 5943,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50HWHTOL (Elect & Pull Start)',50,'Y50-2P (50)0.gif', 5945,
['20\'\' (Long)','Unsure - use overall height']
]
,
['50HMHO (Elect & Pull Start)',50,'Y50-2P (50)1.gif', 5947,
['15\'\' (Short)','Unsure - use overall height']
]
,
['50HMHD (Pull start only)',50,'Y50-2P (50).gif', 5944,
['15\'\' (Short)','20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [185, 'Y60-2END', 1, 2, 1998, 2025, 3, 1, 0, 1, 1,
[
['E60 HMHD Enduro',60,'Y60-2END.jpg', 2726,
['20\'\' (Long)','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 1, 0, 0, 0, 0
]
motors[motors.length] = [4, 'Y350-4', 1, 4, 2006, 2025, 8, 0, 1, 1, 1,
[
['F300AET, FL300AET (5.3L V8)',300,'Y350-4(300).jpg', 8087,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['F350AETX, FL350AETX, F350AETU, FL350AETU (5.3L V8)',350,'Y350-43.jpg', 8088,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['F350XCB, F350UCB, F350UCC (5.3L V8)',350,'F350C.jpg', 8089,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
,
['LF300XCB, LF350UCB, LF350UCC (5.3L V8)',350,'Y-F350NCC.jpg', 8090,
['25\'\' (XL) ','30\'\' (Ultra Long) ','Unsure - use overall height']
]
],
0, 'Yamaha leg size 20130.gif', 1, 0, 0, 0, 0, 0
]
function emptyList(lst)
{
lst.options.length = 1;
hideOptions1();
hideOptions2();
if (lst == window.document.frmOrder.model)
hideMotorImage();
}
function emptyLists(lsts)
{
for (var i = 0; i < lsts.length; i++)
emptyList(lsts[i]);
}
function addListItem(lst, val, txt)
{
var opt = document.createElement("option");
lst.options.add(opt);
opt.text = txt;
opt.value = val;
}
function getModels(manufacturerID)
{
var mots = [];
for (var i = 0; i < motors.length; i++)
{
if (motors[i][2] == manufacturerID)
mots[mots.length] = motors[i];
}
return mots;
}
function getStrokes()
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var strokes = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var exists = false;
for (var j = 0; j < strokes.length; j++)
{
if (strokes[j] == mots[i][3])
exists = true;
}
if (!exists)
strokes[strokes.length] = mots[i][3];
}
return strokes;
}
function updateStrokes()
{
var frm = window.document.frmOrder;
var lst = frm.stroke;
emptyList(lst);
var strokes = getStrokes();
for (var i = 0; i < strokes.length; i++)
addListItem(lst, strokes[i], strokes[i] + " Stroke");
emptyLists([frm.hp, frm.year, frm.model, frm.leg]);
}
function getHps()
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var stroke = frm.stroke.options[frm.stroke.selectedIndex].value;
var hps = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var models = mots[i][11];
if (mots[i][3] == stroke)
{
for (var j = 0; j < models.length; j++)
{
var exists = false;
for (k = 0; k < hps.length; k++)
{
if (hps[k] == models[j][1])
exists = true;
}
if (!exists)
hps[hps.length] = models[j][1];
}
}
}
hps.sort(function(a,b){return a - b});
return hps;
}
function updateHps()
{
var frm = window.document.frmOrder;
var lst = frm.hp;
emptyList(lst);
var hps = getHps();
for (var i = 0; i < hps.length; i++)
addListItem(lst, hps[i], hps[i]);
emptyLists([frm.year, frm.model, frm.leg]);
}
function getYears()
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var stroke = frm.stroke.options[frm.stroke.selectedIndex].value;
var hp = frm.hp.options[frm.hp.selectedIndex].value;
var years = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var models = mots[i][11];
if (mots[i][3] == stroke)
{
for (var j = 0; j < models.length; j++)
{
if (hp == models[j][1])
{
var startYear = mots[i][4];
var endYear = mots[i][5];
if (endYear == 0)
endYear = 2025;
if (startYear > endYear)
endYear = startYear;
for (var k = endYear; k > startYear - 1; k--)
{
var exists = false;
for (var l = 0; l < years.length; l++)
{
if (years[l] == k)
exists = true;
}
if (!exists)
years[years.length] = k;
}
}
}
}
}
//sort years array in descending years
years.sort(function(a,b){return b - a});
return years;
}
function updateYears()
{
var frm = window.document.frmOrder;
var lst = frm.year;
emptyList(lst);
var years = getYears();
for (var i = 0; i < years.length; i++)
addListItem(lst, years[i], years[i]);
emptyLists([frm.model, frm.leg]);
}
function getMods()
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var stroke = frm.stroke.options[frm.stroke.selectedIndex].value;
var hp = frm.hp.options[frm.hp.selectedIndex].value;
var year = frm.year.options[frm.year.selectedIndex].value;
var mods = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var models = mots[i][11];
if (mots[i][3] == stroke)
{
for (var j = 0; j < models.length; j++)
{
if (hp == models[j][1])
{
var startYear = mots[i][4];
var endYear = mots[i][5];
if (endYear == 0)
endYear = 2025;
if (startYear > endYear)
endYear = startYear;
if (parseInt(year) >= startYear && parseInt(year) <= endYear)
{
mods[mods.length] = [models[j][3], models[j][0], models[j][2]];
}
}
}
}
}
return mods;
}
function updateModels()
{
var frm = window.document.frmOrder;
var lst = frm.model;
emptyList(lst);
var models = getMods();
for (var i = 0; i < models.length; i++)
addListItem(lst, models[i][0], models[i][1]);
emptyLists([frm.leg]);
}
function getLegs()
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var stroke = frm.stroke.options[frm.stroke.selectedIndex].value;
var hp = frm.hp.options[frm.hp.selectedIndex].value;
var year = frm.year.options[frm.year.selectedIndex].value;
var model = frm.model.options[frm.model.selectedIndex].value;
var legs = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var models = mots[i][11];
if (mots[i][3] == stroke)
{
for (var j = 0; j < models.length; j++)
{
if (hp == models[j][1])
{
var startYear = mots[i][4];
var endYear = mots[i][5];
if (endYear == 0)
endYear = 2025;
if (startYear > endYear)
endYear = startYear;
if (parseInt(year) >= startYear && parseInt(year) <= endYear && models[j][3] == model)
{
var modelLegs = models[j][4];
for (var k = 0; k < modelLegs.length; k++)
legs[legs.length] = modelLegs[k];
//set cylinders variable
cylinders = mots[i][6];
}
}
}
}
}
return legs;
}
function updateLegs()
{
var lst = window.document.frmOrder.leg;
emptyList(lst);
var legs = getLegs();
for (var i = 0; i < legs.length; i++)
addListItem(lst, legs[i], legs[i]);
}
function displayOptions1()
{
var div = document.getElementById("options1");
div.style.height = "";
div.style.visibility = "visible";
//determine to show divElectricStart, divPullStart, divTrimTilt
var lst = window.document.frmOrder.model;
var models = getMods();
var hasElectricStart = false;
var hasPullStart = false;
var hasInternalFuel = false;
var hasTrimTilt = false;
for (var i = 0; i < models.length; i++)
{
if (models[i][0] == lst.options[lst.selectedIndex].value)
{
//7 = pull, 8 = electric, 12 = internal fuel tank
var motor = getMotorFromModel(models[i][0]);
if (motor[7] == 1)
hasPullStart = true;
if (motor[8] == 1)
hasElectricStart = true;
if (motor[12] == 1)
hasInternalFuel = true;
if (motor[15] == 1)
hasTrimTilt = true;
break;
}
}
//show/hide pull start and electric start divs
if (hasElectricStart)
{
if (hasPullStart)
{
var div = document.getElementById("divElectricStart");
div.style.height = "";
div.style.visibility = "visible";
window.document.frmOrder.electricStart.selectedIndex = 0;
}
else
{
//set to yes
window.document.frmOrder.electricStart.selectedIndex = 1;
}
}
else
{
var div = document.getElementById("divElectricStart");
div.style.height = "0px";
div.style.visibility = "hidden";
}
if (hasPullStart)
{
if (hasElectricStart)
{
var div = document.getElementById("divPullStart");
div.style.height = "";
div.style.visibility = "visible";
window.document.frmOrder.pullStart.selectedIndex = 0;
}
else
{
//set to yes
window.document.frmOrder.pullStart.selectedIndex = 1;
}
}
else
{
var div = document.getElementById("divPullStart");
div.style.height = "0px";
div.style.visibility = "hidden";
}
if (hasInternalFuel)
{
var div = document.getElementById("divInternalFuel");
div.style.height = "";
div.style.visibility = "visible";
}
else
{
var div = document.getElementById("divInternalFuel");
div.style.height = "0px";
div.style.visibility = "hidden";
}
if (hasTrimTilt)
{
var div = document.getElementById("divTrimTilt");
div.style.height = "";
div.style.visibility = "visible";
}
else
{
var div = document.getElementById("divTrimTilt");
div.style.height = "0px";
div.style.visibility = "hidden";
}
if (window.document.frmOrder.printing.selectedIndex != 0) { displayOptions2(); } else { hideOptions2() }
}
function hideOptions1()
{
var div = document.getElementById("options1");
div.style.height = "0px";
div.style.visibility = "hidden";
var div = document.getElementById("divElectricStart");
div.style.height = "0px";
div.style.visibility = "hidden";
var div = document.getElementById("divPullStart");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function displayPrintingOptions1()
{
var div = document.getElementById("divPrintingOptions1");
div.style.height = "";
div.style.visibility = "visible";
}
function displayPrintingNotice()
{
var div = document.getElementById("divPrintingNotice");
div.style.height = "";
div.style.visibility = "visible";
}
function displayOptions2()
{
var div = document.getElementById("options2");
div.style.height = "";
div.style.visibility = "visible";
$('.divML').css('visibility', 'hidden');
$('.divML').css('height', '0px');
var frm = window.document.frmOrder;
var cover = frm.cover;
if (cover.options[cover.selectedIndex].value != "" && cover.options[cover.selectedIndex].value == "1")
{
var div = document.getElementById("divPrintingCovers");
div.style.height = "";
div.style.visibility = "visible";
}
if (window.document.frmOrder.printing.selectedIndex == 1)
{
div = document.getElementById("divPrintingColour");
div.style.height = "";
div.style.visibility = "visible";
}
if (window.document.frmOrder.printing.selectedIndex != 4)
{
div = document.getElementById("divStockImage");
div.style.height = "0px";
div.style.visibility = "hidden";
$("#printingstockimageID").val("");
$("#printingstockimageID").focus();
$("#printingstockimageID").change();
$("#printingstockimagetext").val("");
}
/*
if (window.document.frmOrder.printing.selectedIndex != 5)
{
div = document.getElementById("divColourPrinting");
div.style.height = "0px";
div.style.visibility = "hidden";
$("#printingfoilcolourID").val("");
$("#printingfoilcolourID").focus();
$("#printingfoilcolourID").change();
}
*/
if (window.document.frmOrder.printing.selectedIndex == 1)
{
div = document.getElementById("divPrintingName");
div.style.height = "";
div.style.visibility = "visible";
}
if (window.document.frmOrder.printing.selectedIndex == 2)
{
div = document.getElementById("divPrintingLogo");
div.style.height = "";
div.style.visibility = "visible";
}
if (window.document.frmOrder.printing.selectedIndex == 3)
{
div = document.getElementById("divManufacturerLogo");
div.style.height = "";
div.style.visibility = "visible";
if ($('#printingmanufacturerID').val() == "0" || $('#printingmanufacturerID').val() == "") {
var manufacturerExists = false;
$('#printingmanufacturerID option').each(function(){
if (this.value == $('#manufacturerID').val()) {
manufacturerExists = true;
return false;
}
});
if (manufacturerExists) {
$('#printingmanufacturerID').val($('#manufacturerID').val());
}
}
$('#divML' + $('#printingmanufacturerID').val()).css('visibility', 'visible');
$('#divML' + $('#printingmanufacturerID').val()).css('height', '');
}
if (window.document.frmOrder.printing.selectedIndex == 4)
{
div = document.getElementById("divStockImage");
div.style.height = "";
div.style.visibility = "visible";
}
/*
if (window.document.frmOrder.printing.selectedIndex == 5)
{
div = document.getElementById("divColourPrinting");
div.style.height = "";
div.style.visibility = "visible";
}
*/
}
function hidePrintingOptions1()
{
var div = document.getElementById("divPrintingOptions1");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function hidePrintingNotice()
{
var div = document.getElementById("divPrintingNotice");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function hideOptions2()
{
$('.divML').css('visibility', 'hidden');
$('.divML').css('height', '0px');
var div = document.getElementById("options2");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divPrintingCovers");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divPrintingColour");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divPrintingName");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divPrintingLogo");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divManufacturerLogo");
div.style.height = "0px";
div.style.visibility = "hidden";
div = document.getElementById("divStockImage");
div.style.height = "0px";
div.style.visibility = "hidden";
/*
div = document.getElementById("divColourPrinting");
div.style.height = "0px";
div.style.visibility = "hidden";
*/
}
function displayFinOption()
{
var div = document.getElementById("divFinOption");
div.style.height = "";
div.style.visibility = "visible";
}
function hideFinOption()
{
var div = document.getElementById("divFinOption");
div.style.height = "0px";
div.style.visibility = "hidden";
window.document.frmOrder.fin.selectedIndex = 0;
}
function displayFin()
{
var div = document.getElementById("divFin");
div.style.height = "";
div.style.visibility = "visible";
}
function hideFin()
{
var div = document.getElementById("divFin");
div.style.height = "0px";
div.style.visibility = "hidden";
var frm = window.document.frmOrder;
frm.finName.selectedIndex = 0;
hideFinPhoto();
calculate();
}
function displayFullOptions()
{
var div = document.getElementById("divFullOptions");
div.style.height = "";
div.style.visibility = "visible";
}
function hideFullOptions()
{
var div = document.getElementById("divFullOptions");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function displayMotorImage()
{
var lst = window.document.frmOrder.model;
var div = document.getElementById("motorimage");
var img = document.getElementById("imgMotor");
var imgLink = document.getElementById("imgMotorLink");
var hasPhoto = false;
var models = getMods();
for (var i = 0; i < models.length; i++)
{
if (models[i][0] == lst.options[lst.selectedIndex].value && models[i][2] != "")
{
img.src = "/saved/" + escape(models[i][2]);
imgLink.href = img.src;
hasPhoto = true;
}
}
if (hasPhoto)
{
div.style.height = "200px";
div.style.visibility = "visible";
}
$("#divStep1Buttons").css("display", "inline");
}
function hideMotorImage()
{
var div = document.getElementById("motorimage");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function displayPlateImage()
{
var lst = window.document.frmOrder.model;
var div = document.getElementById("plateimage");
var img = document.getElementById("imgPlate");
var hasPhoto = false;
var models = getMods();
for (var i = 0; i < models.length; i++)
{
if (models[i][0] == lst.options[lst.selectedIndex].value && getMotorFromModel(models[i][0])[13] != "")
{
img.src = "/saved/" + getMotorFromModel(models[i][0])[13];
hasPhoto = true;
}
}
if (hasPhoto)
{
div.style.height = "200px";
div.style.visibility = "visible";
}
}
function hidePlateImage()
{
var div = document.getElementById("plateimage");
div.style.height = "0px";
div.style.visibility = "hidden";
}
function getMotorFromModel(modelID)
{
var frm = window.document.frmOrder;
var manufacturerID = frm.manufacturerID.options[frm.manufacturerID.selectedIndex].value;
var model = frm.model.options[frm.model.selectedIndex].value;
var motor = [];
var mots = getModels(manufacturerID);
for (var i = 0; i < mots.length; i++)
{
var models = mots[i][11];
for (var j = 0; j < models.length; j++)
{
if (models[j][3] == model)
motor = mots[i];
}
}
return motor;
}
function updateCovers()
{
var frm = window.document.frmOrder;
var model = frm.model.options[frm.model.selectedIndex].value;
var motor = getMotorFromModel(model);
//determine if full cover and/or splash cover is ticked and display cover options...
var coverFull = motor[9];
var coverSplash = motor[10];
var coverMooring = motor[14];
var coverCombo = 0;
if (coverFull == 1 && coverSplash == 1)
coverCombo = 1;
frm.cover.options.length = 1;
frm.printingcovers.options.length = 1;
if (coverCombo == 1)
{
addListItem(frm.cover, "1", "Combo Covers (Full & Splash)");
addListItem(frm.printingcovers, "1", "Combo Covers (Full & Splash)");
}
if (coverFull == 1)
{
addListItem(frm.cover, "2", "Full Cover Only");
addListItem(frm.printingcovers, "2", "Full Cover Only");
}
if (coverSplash == 1)
{
addListItem(frm.cover, "3", "Vented Splash Cover (Cowling Cover)");
addListItem(frm.printingcovers, "3", "Vented Splash Cover (Cowling Cover)");
}
if (coverMooring == 1)
{
addListItem(frm.cover, "4", "Mooring Cover only");
addListItem(frm.printingcovers, "4", "Mooring Cover only");
}
}
function validate()
{
var frm = window.document.frmOrder;
var missing = "";
//standard
if (frm.manufacturerID.selectedIndex == 0)
missing += "Make of Outboard\n";
if (frm.stroke.selectedIndex == 0)
missing += "Stroke\n";
if (frm.hp.selectedIndex == 0)
missing += "Horse Power\n";
if (frm.year.selectedIndex == 0)
missing += "Year\n";
if (frm.model.selectedIndex == 0)
missing += "Model\n";
if (frm.cover.selectedIndex == 0)
missing += "Cover(s) Required\n";
if (frm.leg.selectedIndex == 0 && frm.cover.options[frm.cover.selectedIndex].value != "3" && frm.cover.options[frm.cover.selectedIndex].value != "4")
missing += "Leg Length\n";
if (frm.printingcolourmain.selectedIndex == 0)
missing += "Main Colour\n";
if (frm.tiller.selectedIndex == 1 && frm.tillerGear.selectedIndex == 0)
missing += "Gear change on tiller\n";
if (frm.delivery.selectedIndex == 0)
missing += "Delivery Method\n";
//if printing has selectedIndex of 1
if (frm.printing.selectedIndex == 1 && frm.printingname.value == "" && $("#printhp").val() != "1")
missing += "Name to be printed\n";
//if printing has selectedIndex of 2
if (frm.printing.selectedIndex == 2 && frm.printinglogo.value == "" && $("#printhp").val() != "1")
{
missing += "Logo to be printed\n";
}
//if printing has selectedIndex of 3
//if (frm.printing.selectedIndex == 3 && frm.dealershipname.value == "" && $("#printhp").val() != "1")
//missing += "Dealership name\n";
if (frm.printing.selectedIndex == 4 && frm.printingstockimageID.selectedIndex == 0)
missing += "OCA stock image\n";
//if (frm.printing.selectedIndex == 5 && frm.printingfoilcolourID.selectedIndex == 0)
//missing += "Colour printing\n";
//if printing has selectedIndex > 0
if (frm.printing.selectedIndex > 0)
{
if (frm.printingcovers.selectedIndex == 0)
missing += "Covers to print on\n";
//if (frm.printingcolourtype.selectedIndex == 0 && frm.printing.selectedIndex != 3 && frm.printing.selectedIndex != 4 && frm.printing.selectedIndex != 5)
if (frm.printingcolourtype.selectedIndex == 0 && frm.printing.selectedIndex == 1)
missing += "Printing colour type\n";
}
//if fin has selectedIndex of 1
if (frm.fin.selectedIndex == 1 && ((frm.finA.value == "" || frm.finB.value == "" || frm.finC.value == "" || frm.finD.value == "" || frm.finE.value == "") && frm.finName.selectedIndex == 0))
missing += "Fin measurements or fin name\n";
if (!frm.terms.checked)
missing += "Agreeing to the terms and conditions\n";
if (missing != "")
window.alert("Please specify the following:\n\n" + missing);
return (missing == "");
}
function calculate()
{
var frm = window.document.frmOrder;
var price = 0;
//cover price
var priceCover = [];
priceCover[priceCover.length] = [1, 6, 19, 2, 158.00, 0, 0];
priceCover[priceCover.length] = [1, 20, 59, 2, 223.00, 0, 0];
priceCover[priceCover.length] = [1, 60, 90, 2, 269.00, 0, 0];
priceCover[priceCover.length] = [1, 91, 200, 2, 326.00, 0, 0];
priceCover[priceCover.length] = [1, 201, 250, 2, 373.00, 0, 0];
priceCover[priceCover.length] = [1, 251, 350, 2, 420.00, 0, 0];
priceCover[priceCover.length] = [2, 2, 5, 2, 95.00, 0, 0];
priceCover[priceCover.length] = [2, 6, 19, 2, 144.00, 0, 0];
priceCover[priceCover.length] = [2, 20, 59, 2, 197.00, 0, 0];
priceCover[priceCover.length] = [2, 60, 90, 2, 230.00, 0, 0];
priceCover[priceCover.length] = [2, 91, 200, 2, 279.00, 0, 0];
priceCover[priceCover.length] = [3, 6, 19, 2, 68.00, 0, 0];
priceCover[priceCover.length] = [3, 20, 59, 2, 103.00, 0, 0];
priceCover[priceCover.length] = [3, 60, 90, 2, 132.00, 0, 0];
priceCover[priceCover.length] = [3, 91, 200, 2, 160.00, 0, 0];
priceCover[priceCover.length] = [3, 201, 250, 2, 185.00, 0, 0];
priceCover[priceCover.length] = [3, 251, 350, 2, 206.00, 0, 0];
priceCover[priceCover.length] = [1, 2, 7, 4, 125.00, 0, 0];
priceCover[priceCover.length] = [1, 8, 20, 4, 174.00, 0, 0];
priceCover[priceCover.length] = [1, 21, 50, 4, 239.00, 0, 0];
priceCover[priceCover.length] = [1, 51, 60, 4, 306.00, 0, 0];
priceCover[priceCover.length] = [1, 61, 130, 4, 365.00, 0, 0];
priceCover[priceCover.length] = [1, 131, 200, 4, 410.00, 1, 4];
priceCover[priceCover.length] = [1, 301, 450, 4, 490.00, 6, 6];
priceCover[priceCover.length] = [2, 2, 7, 4, 114.00, 0, 0];
priceCover[priceCover.length] = [2, 8, 20, 4, 163.00, 0, 0];
priceCover[priceCover.length] = [2, 21, 50, 4, 215.00, 0, 0];
priceCover[priceCover.length] = [2, 51, 60, 4, 275.00, 0, 0];
priceCover[priceCover.length] = [2, 61, 130, 4, 320.00, 0, 0];
priceCover[priceCover.length] = [2, 131, 200, 4, 365.00, 1, 4];
priceCover[priceCover.length] = [2, 200, 500, 4, 433.00, 8, 8];
priceCover[priceCover.length] = [3, 2, 7, 4, 54.00, 0, 0];
priceCover[priceCover.length] = [3, 8, 20, 4, 71.00, 0, 0];
priceCover[priceCover.length] = [3, 21, 50, 4, 107.00, 0, 0];
priceCover[priceCover.length] = [3, 51, 60, 4, 138.00, 0, 0];
priceCover[priceCover.length] = [3, 61, 130, 4, 172.00, 0, 0];
priceCover[priceCover.length] = [3, 131, 200, 4, 188.00, 1, 4];
priceCover[priceCover.length] = [3, 200, 500, 4, 285.00, 8, 8];
priceCover[priceCover.length] = [3, 2, 5, 2, 52.00, 0, 0];
priceCover[priceCover.length] = [2, 201, 250, 2, 318.00, 0, 0];
priceCover[priceCover.length] = [2, 251, 350, 2, 361.00, 0, 0];
priceCover[priceCover.length] = [4, 2, 5, 2, 67.00, 0, 0];
priceCover[priceCover.length] = [4, 6, 19, 2, 101.00, 0, 0];
priceCover[priceCover.length] = [4, 20, 59, 2, 138.00, 0, 0];
priceCover[priceCover.length] = [4, 60, 90, 2, 161.00, 0, 0];
priceCover[priceCover.length] = [4, 91, 200, 2, 196.00, 0, 0];
priceCover[priceCover.length] = [4, 201, 250, 2, 223.00, 0, 0];
priceCover[priceCover.length] = [4, 251, 350, 2, 253.00, 0, 0];
priceCover[priceCover.length] = [4, 2, 7, 4, 80.00, 0, 0];
priceCover[priceCover.length] = [4, 8, 20, 4, 115.00, 0, 0];
priceCover[priceCover.length] = [4, 21, 50, 4, 151.00, 0, 0];
priceCover[priceCover.length] = [4, 51, 60, 4, 193.00, 0, 0];
priceCover[priceCover.length] = [4, 61, 130, 4, 224.00, 0, 0];
priceCover[priceCover.length] = [4, 131, 200, 4, 256.00, 1, 4];
priceCover[priceCover.length] = [4, 200, 500, 4, 304.00, 8, 8];
priceCover[priceCover.length] = [1, 135, 300, 4, 474.00, 5, 7];
priceCover[priceCover.length] = [2, 135, 300, 4, 399.00, 5, 7];
priceCover[priceCover.length] = [4, 135, 300, 4, 280.00, 5, 7];
priceCover[priceCover.length] = [1, 200, 500, 4, 532.00, 8, 8];
priceCover[priceCover.length] = [2, 301, 400, 4, 410.00, 6, 6];
priceCover[priceCover.length] = [3, 301, 400, 4, 251.00, 6, 7];
priceCover[priceCover.length] = [4, 301, 400, 4, 287.00, 6, 7];
priceCover[priceCover.length] = [3, 135, 300, 4, 240.00, 5, 7];
priceCover[priceCover.length] = [1, 2, 5, 2, 109.00, 0, 0];
priceCover[priceCover.length] = [4, 500, 600, 4, 400.00, 12, 12];
priceCover[priceCover.length] = [1, 350, 500, 4, 554.00, 10, 10];
priceCover[priceCover.length] = [3, 350, 500, 4, 320.00, 10, 10];
priceCover[priceCover.length] = [4, 350, 500, 4, 320.00, 10, 10];
priceCover[priceCover.length] = [3, 500, 600, 4, 400.00, 12, 12];
priceCover[priceCover.length] = [1, 500, 600, 4, 663.00, 12, 12];
//postage price
var pricePostage = [];
var pricePostage1 = 0;
var pricePostage2 = 0;
var postageFirst = false;
var postageSecond = false;
pricePostage1 = 6.50;
pricePostage2 = 4.00;
for (var i = 0; i < selectedDeliveryOptions.length; i++)
{
if (selectedDeliveryOptions[i] == "66")
{
if (editInd == "") {
postageSecond = true;
}
else {
if (!postageFirst) {
postageFirst = true;
}
else if (i <= parseInt(editInd)) {
postageSecond = true;
}
}
}
}
if (postageSecond) {
if (pricePostage2 != 0) {
pricePostage1 = pricePostage2;
}
}
pricePostage[pricePostage.length] = [66, pricePostage1];
pricePostage1 = 30.00;
pricePostage2 = 15.00;
for (var i = 0; i < selectedDeliveryOptions.length; i++)
{
if (selectedDeliveryOptions[i] == "89")
{
if (editInd == "") {
postageSecond = true;
}
else {
if (!postageFirst) {
postageFirst = true;
}
else if (i <= parseInt(editInd)) {
postageSecond = true;
}
}
}
}
if (postageSecond) {
if (pricePostage2 != 0) {
pricePostage1 = pricePostage2;
}
}
pricePostage[pricePostage.length] = [89, pricePostage1];
if (postageSecond) {
$("#postage2").val("1");
} else {
$("#postage2").val("");
}
//manufacturer logo price
var priceLogoManufacturer = [];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 2, 55.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 5, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 5, 25.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 5, 25.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 4, 60.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 4, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 4, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 8, 55.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 8, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 8, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 10, 70.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 10, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 10, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 7, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 7, 70.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 7, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 3, 60.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 3, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 3, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 1, 70.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 1, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 1, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 7, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 10, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 1, 50.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 3, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 4, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 8, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 2, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 5, 25.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 2, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 14, 60.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 14, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 14, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 14, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 2, 35.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [1, 21, 60.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [2, 21, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [3, 21, 45.00];
priceLogoManufacturer[priceLogoManufacturer.length] = [4, 21, 45.00];
//hp print price
var priceLogo = [];
priceLogo[priceLogo.length] = [2, 20.00];
priceLogo[priceLogo.length] = [3, 20.00];
priceLogo[priceLogo.length] = [4, 20.00];
priceLogo[priceLogo.length] = [1, 34.00];
//update price for hp print on rear
var hpPrintPrice = "0.00";
if ($("#printhp").length == 1 && $("#printhp").val() == "1")
{
if ($("#cover").val() == "2")
hpPrintPrice = "20.00";
if ($("#cover").val() == "3")
hpPrintPrice = "20.00";
if ($("#cover").val() == "4")
hpPrintPrice = "20.00";
if ($("#cover").val() == "1")
hpPrintPrice = "34.00";
}
$("#spanHPPrice").html(hpPrintPrice);
//secondary colour price
var priceSecondary = [];
priceSecondary[priceSecondary.length] = [2, 20.00];
priceSecondary[priceSecondary.length] = [3, 15.00];
priceSecondary[priceSecondary.length] = [4, 15.00];
priceSecondary[priceSecondary.length] = [1, 30.00];
//update price for secondary colour
if ($("#printingcolourmain").length == 1 && $("#printingcoloursecondary").val() != "")
{
var secondaryPrintPrice = "0.00";
if (($("#cover").val() == "1" && $("#cover").val() != "1") || ($("#cover").val() == "1" && "1" == "2"))
{
secondaryPrintPrice = "30.00";
price = price + 30.00;
}
if (($("#cover").val() == "2" && $("#cover").val() != "1") || ($("#cover").val() == "1" && "2" == "2"))
{
secondaryPrintPrice = "20.00";
price = price + 20.00;
}
if (($("#cover").val() == "3" && $("#cover").val() != "1") || ($("#cover").val() == "1" && "3" == "2"))
{
secondaryPrintPrice = "15.00";
price = price + 15.00;
}
if (($("#cover").val() == "4" && $("#cover").val() != "1") || ($("#cover").val() == "1" && "4" == "2"))
{
secondaryPrintPrice = "15.00";
price = price + 15.00;
}
$("#spanSecondaryPrice1").html(secondaryPrintPrice);
}
else
{
$("#spanSecondaryPrice1").html("0.00");
}
//update price for secondary colour 2
if ($("#printingcolourmain2").length == 1 && $("#cover").val() == "1" && $("#printingcoloursecondary2").val() != "")
{
var secondaryPrintPrice = "0.00";
if ($("#cover").val() == "1" && "1" == "3")
{
secondaryPrintPrice = "30.00";
price = price + 30.00;
}
if ($("#cover").val() == "1" && "2" == "3")
{
secondaryPrintPrice = "20.00";
price = price + 20.00;
}
if ($("#cover").val() == "1" && "3" == "3")
{
secondaryPrintPrice = "15.00";
price = price + 15.00;
}
if ($("#cover").val() == "1" && "4" == "3")
{
secondaryPrintPrice = "15.00";
price = price + 15.00;
}
$("#spanSecondaryPrice2").html(secondaryPrintPrice);
}
else
{
$("#spanSecondaryPrice2").html("0.00");
}
//colour price
var priceColour = [];
priceColour[priceColour.length] = [1, 1, 35.00];
priceColour[priceColour.length] = [2, 1, 25.00];
priceColour[priceColour.length] = [3, 1, 25.00];
priceColour[priceColour.length] = [1, 2, 70.00];
priceColour[priceColour.length] = [2, 2, 50.00];
priceColour[priceColour.length] = [3, 2, 50.00];
priceColour[priceColour.length] = [4, 1, 24.00];
priceColour[priceColour.length] = [4, 2, 50.00];
//fabric colour (main) price
var priceFabricMain = [];
priceFabricMain[priceFabricMain.length] = [17, 0.00];
priceFabricMain[priceFabricMain.length] = [22, 10.00];
//calculate total price of options
//go through priceCover
var coverID = frm.cover.options[frm.cover.selectedIndex].value;
var hp = frm.hp.options[frm.hp.selectedIndex].value;
var stroke = frm.stroke.options[frm.stroke.selectedIndex].value;
if (coverID != "" && hp != "" && stroke != "")
{
for (var i = 0; i < priceCover.length; i++)
{
//if (priceCover[i][0] == parseInt(coverID) && priceCover[i][1] <= parseInt(hp) && priceCover[i][2] >= parseInt(hp) && priceCover[i][3] == parseInt(stroke) && (cylinders >= priceCover[i][5] || priceCover[i][5] == 0 || priceCover[i][1] < parseInt(hp)) && (cylinders <= priceCover[i][6] || priceCover[i][6] == 0 || priceCover[i][2] > parseInt(hp)))
if (priceCover[i][0] == parseInt(coverID) && priceCover[i][1] <= parseInt(hp) && priceCover[i][2] >= parseInt(hp) && priceCover[i][3] == parseInt(stroke) && (cylinders >= priceCover[i][5] || priceCover[i][5] == 0) && (cylinders <= priceCover[i][6] || priceCover[i][6] == 0))
{
price = price + priceCover[i][4];
frm.coverPrice.value = priceCover[i][4];
$("#spanCoverPrice").html(frm.coverPrice.value + (frm.coverPrice.value.indexOf(".") == -1 ? ".00" : ""));
break;
}
}
}
//go through pricePostage
var deliveryID = frm.delivery.options[frm.delivery.selectedIndex].value;
if (deliveryID != "")
{
for (var i = 0; i < pricePostage.length; i++)
{
if (pricePostage[i][0] == parseInt(deliveryID))
{
price = price + pricePostage[i][1];
break;
}
}
}
//go through priceLogoManufacturer
var printingmanufacturerID = frm.printingmanufacturerID.options[frm.printingmanufacturerID.selectedIndex].value;
var printing = $("#printing").val();
var printingcoversID = frm.printingcovers.options[frm.printingcovers.selectedIndex].value;
$("#spanLogoManufacturerPrice").html("0.00");
if (printingmanufacturerID != "" && printingcoversID != "" && printing == "3")
{
for (var i = 0; i < priceLogoManufacturer.length; i++)
{
if (priceLogoManufacturer[i][0] == parseInt(printingcoversID) && priceLogoManufacturer[i][1] == parseInt(printingmanufacturerID))
{
price = price + priceLogoManufacturer[i][2];
var priceLogoManufacturerStr = "" + priceLogoManufacturer[i][2];
$("#spanLogoManufacturerPrice").html(priceLogoManufacturerStr + (priceLogoManufacturerStr.indexOf(".") == -1 ? ".00" : ""));
break;
}
}
}
//go through priceLogo (hp print price)
if ($("#printhp").length == 1 && $("#printhp").val() == "1")
{
var hpPrintPrice = 0;
if ($("#cover").val() == "2")
hpPrintPrice = 20.00;
if ($("#cover").val() == "3")
hpPrintPrice = 20.00;
if ($("#cover").val() == "4")
hpPrintPrice = 20.00;
if ($("#cover").val() == "1")
hpPrintPrice = 34.00;
price = price + hpPrintPrice;
}
//go through priceColour
var pcolourID = frm.printingcolourtype.options[frm.printingcolourtype.selectedIndex].value;
if (printing == "2") {
pcolourID = "2";
}
$("#spanColourPrice").html("0.00");
if (coverID != "" && pcolourID != "" && (printing == "1" || printing == "2"))
{
for (var i = 0; i < priceColour.length; i++)
{
if (priceColour[i][0] == parseInt(printingcoversID) && priceColour[i][1] == parseInt(pcolourID))
{
price = price + priceColour[i][2];
var priceColourStr = "" + priceColour[i][2];
$("#spanColourPrice").html(priceColourStr + (priceColourStr.indexOf(".") == -1 ? ".00" : ""));
break;
}
}
}
//go through priceFabricMain
var priceFabricMainVal = 0.00;
var pfabricMainID = frm.printingcolourmain.options[frm.printingcolourmain.selectedIndex].value;
for (var i = 0; i < priceFabricMain.length; i++)
{
if (priceFabricMain[i][0] == parseInt(pfabricMainID))
{
price = price + priceFabricMain[i][1];
priceFabricMainVal = priceFabricMain[i][1];
break;
}
}
$("#spanFabricMainPrice").html(priceFabricMainVal.toFixed(2));
//go through priceFabricMain for secondary
var priceFabricMain2 = 0.00;
if ($("#printingcolourmain2").length == 1 && $("#cover").val() == "1")
{
var pfabricMainID2 = frm.printingcolourmain2.options[frm.printingcolourmain2.selectedIndex].value;
for (var i = 0; i < priceFabricMain.length; i++)
{
if (priceFabricMain[i][0] == parseInt(pfabricMainID2))
{
price = price + priceFabricMain[i][1];
priceFabricMain2 = priceFabricMain[i][1];
break;
}
}
}
$("#spanFabricMainPrice2").html(priceFabricMain2.toFixed(2));
//if fin has been selected then add on appropriate price
var finPriceStr = "0.00";
if (frm.finName.selectedIndex > 0)
{
price = price + fins[frm.finName.selectedIndex - 1][1];
finPriceStr = "" + fins[frm.finName.selectedIndex - 1][1];
}
else if ($("#fin").val() == "1")
{
price = price + 0;
finPriceStr = "" + 0;
}
$("#spanFinPrice").html(finPriceStr + (finPriceStr.indexOf(".") == -1 ? ".00" : ""));
var stockPriceStr = "0.00";
//if stock image has been selected then add on appropriate price
if (printing == "4" && frm.printingstockimageID.selectedIndex > 0)
{
if (printingcoversID == "1") {
price = price + (stockImages[frm.printingstockimageID.selectedIndex - 1][2] * 2);
stockPriceStr = "" + (stockImages[frm.printingstockimageID.selectedIndex - 1][2] * 2);
}
else
{
price = price + stockImages[frm.printingstockimageID.selectedIndex - 1][2];
stockPriceStr = "" + stockImages[frm.printingstockimageID.selectedIndex - 1][2];
}
}
$("#spanStockPrice").html(stockPriceStr + (stockPriceStr.indexOf(".") == -1 ? ".00" : ""));
//Removed - 28.04.2020
//if colour printing has been selected then add on price for colour printing
/*
if (printing == "1" && frm.printingfontcolour.selectedIndex == 2)
{
//go through priceColour
if (coverID != "")
{
for (var i = 0; i < priceColour.length; i++)
{
if (priceColour[i][0] == parseInt(coverID) && priceColour[i][1] == 2)
{
price = price + priceColour[i][2];
break;
}
}
}
}
*/
//if hiviz has been selected then add on 20.00
var hiviz = frm.hiviz.options[frm.hiviz.selectedIndex].value;
if (hiviz == "1")
price = price + 20.00;
//if tiller has been selected then add on js:tillerPrice
var tiller = frm.tiller.options[frm.tiller.selectedIndex].value;
if (tiller == "1")
{
price = price + tillerPrice;
$("#divTillerGear").show();
}
else
{
$("#divTillerGear").hide();
}
//if yfork has been selected then add on 20.00
var yfork = frm.yfork.options[frm.yfork.selectedIndex].value;
if (yfork == "1")
price = price + 20.00;
//if zip has been selected then add on 15.00
var zip = frm.zip.options[frm.zip.selectedIndex].value;
if (zip == "1")
price = price + 15.00;
//if zip has been selected then add on 15.00
var locking = frm.locking.options[frm.locking.selectedIndex].value;
if (locking == "1")
price = price + 15.00;
//multiply by quantity
var quantity = frm.quantity.options[frm.quantity.selectedIndex].value;
price = price * parseFloat(quantity);
//discount postage if quantity is > 1
if (parseInt(quantity) > 1)
{
//postage price
var pricePostage1Selected = 0;
var pricePostage2Selected = 0;
if ($("#delivery").val() == "66")
{
pricePostage1Selected = 6.50;
pricePostage2Selected = 4.00;
}
if ($("#delivery").val() == "89")
{
pricePostage1Selected = 30.00;
pricePostage2Selected = 15.00;
}
price = price - ((parseFloat(quantity) - 1) * (pricePostage1Selected - pricePostage2Selected));
}
//if discount value is specified, subtract it
var priceSpan = price;
if ($("#discountValue").length > 0 && $("#discountValue").val() != "")
priceSpan = priceSpan - parseFloat($("#discountValue").val());
//priceSpan = priceSpan * parseFloat(quantity);
writeToLayer("spanPrice", priceSpan.toFixed(2));
frm.price.value = "" + price.toFixed(2);
}
function addItem()
{
var frm = window.document.frmOrder;
frm.action = "order.jsp";
frm.instruction.value = "";
if (validate())
frm.submit();
}
function addProduct()
{
var frm = window.document.frmOrder;
frm.action = "order.jsp";
frm.instruction.value = "product";
if (validate())
frm.submit();
}
function stepProducts()
{
var spUrl = window.document.location.href;
spUrl = spUrl.substring(0, spUrl.lastIndexOf("/") + 1);
window.document.location.href = spUrl + "order-product.jsp?regionID=1&dt=" + (new Date()).toString();
}
function stepCovers()
{
var spUrl = window.document.location.href;
spUrl = spUrl.substring(0, spUrl.lastIndexOf("/") + 1);
window.document.location.href = spUrl + "order.jsp?dt=" + (new Date()).toString();
}
function addItemStep2()
{
var frm = window.document.frmOrder;
frm.action = "order.jsp";
frm.instruction.value = "addItemStep2";
if (validate())
frm.submit();
}
function step2()
{
var frm = window.document.frmOrder;
frm.action = "order2.jsp";
frm.instruction.value = "";
frm.submit();
}
function deleteItem(index)
{
var frm = window.document.frmOrder;
frm.action = "order.jsp";
frm.instruction.value = "delete";
frm.ind.value = index;
frm.submit();
}
function setPrintingCovers()
{
var frm = window.document.frmOrder;
var cover = frm.cover;
var printingcovers = frm.printingcovers;
if (cover.options[cover.selectedIndex].value != "" && cover.options[cover.selectedIndex].value != "1")
{
printingcovers.selectedIndex = cover.selectedIndex;
}
else
{
var div = document.getElementById("divPrintingCovers");
div.style.height = "";
div.style.visibility = "visible";
}
if (cover.options[cover.selectedIndex].value != "3" && cover.options[cover.selectedIndex].value != "4")
{
//display divLeg
var div = document.getElementById("divLeg");
div.style.height = "";
div.style.visibility = "visible";
hidePlateImage();
displayPlateImage();
displayFinOption();
displayFullOptions();
}
else
{
//hide divLeg
var div = document.getElementById("divLeg");
div.style.height = "0px";
div.style.visibility = "hidden";
hidePlateImage();
hideFinOption();
hideFin();
hideFullOptions();
hideLockingEyeOption();
}
//display locking eye option if full, mooring or combo has been selected
if (cover.options[cover.selectedIndex].value != "" && cover.options[cover.selectedIndex].value != "3")
{
showLockingEyeOption();
}
}
function showLockingEyeOption()
{
if (false)
return;
var div = document.getElementById("divLocking");
div.style.height = "";
div.style.visibility = "visible";
}
function hideLockingEyeOption()
{
var div = document.getElementById("divLocking");
div.style.height = "0px";
div.style.visibility = "hidden";
var frm = window.document.frmOrder;
frm.locking.selectedIndex = 0;
}
function doColour2()
{
var frm = window.document.frmOrder;
var div = document.getElementById("divColour2");
if (frm.cover.options[frm.cover.selectedIndex].value == "1")
{
div.style.height = "";
div.style.visibility = "visible";
}
else
{
div.style.height = "0px";
div.style.visibility = "hidden";
}
}
var tillerPrice = 0.00;
function updateTillerPrice()
{
var tillerPrices = [];
tillerPrices[tillerPrices.length] = [0, 20, 35.00];
tillerPrices[tillerPrices.length] = [21, 60, 45.00];
tillerPrices[tillerPrices.length] = [61, 100, 65.00];
tillerPrices[tillerPrices.length] = [101, 999, 0.00];
var frm = window.document.frmOrder;
var hp = parseFloat(frm.hp.options[frm.hp.selectedIndex].value);
for (var i = 0; i < tillerPrices.length; i++)
{
if (hp >= tillerPrices[i][0] && hp <= tillerPrices[i][1])
tillerPrice = tillerPrices[i][2];
}
writeToLayer("spanTillerPrice", tillerPrice.toFixed(2));
var div = document.getElementById("divTiller");
if (tillerPrice != "0.00")
{
div.style.height = "";
div.style.visibility = "visible";
}
else
{
div.style.height = "0px";
div.style.visibility = "hidden";
}
}