Simrad AP2803VRF Autopilot System
Current Bid: $ 3,179.00  
 

// Flash Player Version Detection - Rev 1.6 // Detect Client Browser type // Copyright(c) 2005-2006 Adobe Macromedia Software, LLC. All rights reserved. var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false; var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false; var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false; function ControlVersion() { var version; var axo; var e; // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry try { // version will be set for 7.X or greater players axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); version = axo.GetVariable("$version"); } catch (e) { } if (!version) { try { // version will be set for 6.X players only axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); // installed player is some revision of 6.0 // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29, // so we have to be careful. // default to the first public version version = "WIN 6,0,21,0"; // throws if AllowScripAccess does not exist (introduced in 6.0r47) axo.AllowScriptAccess = "always"; // safe to call for 6.0r47 or greater version = axo.GetVariable("$version"); } catch (e) { } } if (!version) { try { // version will be set for 4.X or 5.X player axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); version = axo.GetVariable("$version"); } catch (e) { } } if (!version) { try { // version will be set for 3.X player axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3"); version = "WIN 3,0,18,0"; } catch (e) { } } if (!version) { try { // version will be set for 2.X player axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); version = "WIN 2,0,0,11"; } catch (e) { version = -1; } } return version; }//function ControlVersion // JavaScript helper required to detect Flash Player PlugIn version information function GetSwfVer(){ // NS/Opera version >= 3 check for Flash plugin in plugin array var flashVer = -1; if (navigator.plugins != null && navigator.plugins.length > 0) { if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) { var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description; var descArray = flashDescription.split(" "); var tempArrayMajor = descArray[2].split("."); var versionMajor = tempArrayMajor[0]; var versionMinor = tempArrayMajor[1]; var versionRevision = descArray[3]; if (versionRevision == "") { versionRevision = descArray[4]; } if (versionRevision[0] == "d") { versionRevision = versionRevision.substring(1); } else if (versionRevision[0] == "r") { versionRevision = versionRevision.substring(1); if (versionRevision.indexOf("d") > 0) { versionRevision = versionRevision.substring(0, versionRevision.indexOf("d")); } } var flashVer = versionMajor + "." + versionMinor + "." + versionRevision; //alert("flashVer="+flashVer); } } // MSN/WebTV 2.6 supports Flash 4 else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer= 4; // WebTV 2.5 supports Flash 3 else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer= 3; // older WebTV supports Flash 2 else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2; else if ( isIE && isWin && !isOpera ) { flashVer = ControlVersion(); } return flashVer; }//function GetSwfVer // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) { versionStr = GetSwfVer(); if (versionStr == -1 ) { return false; } else if (versionStr != 0) { if(isIE && isWin && !isOpera) { // Given "WIN 2,0,0,11" tempArray = versionStr.split(" "); // ["WIN", "2,0,0,11"] tempString = tempArray[1]; // "2,0,0,11" versionArray = tempString.split(","); // ['2', '0', '0', '11'] } else { versionArray = versionStr.split("."); } var versionMajor = versionArray[0]; var versionMinor = versionArray[1]; var versionMajor = versionArray[0]; var versionMinor = versionArray[1]; var versionRevision = versionArray[2]; // is the major.revision >= requested major.revision AND the minor version >= requested minor if (versionMajor > parseFloat(reqMajorVer)) { return true; } else if (versionMajor == parseFloat(reqMajorVer)) { if (versionMinor > parseFloat(reqMinorVer)) return true; else if (versionMinor == parseFloat(reqMinorVer)) { if (versionRevision >= parseFloat(reqRevision)) return true; } } return false; } }//function DetectFlashVer var correctVersion = DetectFlashVer(9,0,0); var viewerURL = "http://www.billboardspm.com/viewer"; var urlArray = viewerURL.split("/"); var rootURL = urlArray[0]+"//"+urlArray[2]; if (correctVersion) { //Display Page Design document.writeln(''); document.writeln(''); document.writeln(''); document.writeln(''); document.writeln(''); document.writeln(''); document.writeln(''); document.writeln(''); } else { document.writeln(''); document.writeln(''); document.writeln('If the button doesnt work, copy and paste the link below into your web browser: http://get.adobe.com/flashplayer/'); }//if (correctVersion) { function hideCosmoViewer(docType) { if (docType == "footer") { var elm = document.getElementById("__fremont_footer_viewer"); } else if (docType == "header") { var elm = document.getElementById("__fremont_header_viewer"); } if (elm) { elm.style.display = "none"; } if (docType == "footer") { hideCosmoImgPreviewFooter(); } else if (docType == "header") { hideCosmoImgPreviewHeader(); } hideCosmoBorder(); } function hideCosmoImgPreviewHeader() { var cosmo_img_preview = document.getElementById("__cosmo_header_img_preview"); if (cosmo_img_preview) { cosmo_img_preview.style.display = "none"; } } function hideCosmoImgPreviewFooter() { var cosmo_img_preview = document.getElementById("__cosmo_footer_img_preview"); if (cosmo_img_preview) { cosmo_img_preview.style.display = "none"; } } function cosmoViewerAppLoadedEvent(docType) { if (docType == "footer") { hideCosmoImgPreviewFooter(); } else if (docType == "header") { hideCosmoImgPreviewHeader(); } } function hideCosmoBorder() { var elm = document.getElementById("__fremont_border"); if (!elm) { return; } elm.style.border = "0px"; elm.style.width = "auto"; elm.style.padding = "0px"; elm.style.textAlign = ""; elm = document.getElementById("__fremont_container"); elm.style.marginLeft = "0px"; elm.style.marginRight = "0px"; }

  AP2803VRF SystemIncludes: AP28 Control Head AC12 Course Computer RC42 Rate Compass RPU80 Hydraulic Pump SIMKIT-1Complete set of Turn Patterns - including Depth Contour Tracking, programmable S-turn, Zigzag, Continuous turn, Square patterns and many more. Improved steering algorithms - full Rate of Turn (ROT) control provides smooth and precise turns in any condition and improves tack and gybe performance on sailboats. No Drift Course - Maintain set Course over Ground even in severe wind and current conditions. State of the art display and control functions and advanced SimNet networking, makes the all new AP28 the perfect autopilot for larger power and sail boats. The AP28 control unit features a large LCD display and operation via the brand new interface is intuitive to say the least. This simple display and control setup gives you access to a raft of features and performance options. Installation & Integration Two new autopilot computers provide substantially more drive current than previous generations and incorporate our new SimNet plug and play sensor technology. New SimNet compass and rudder sensor, are easier than ever to install; because you no longer have to run dedicated cables back to the autopilot computer. Instead, the new SimNet sensors conveniently connect via the SimNet backbone. The advanced nature of the SimNet network insures the compass and rudder data is automatically routed back to the AP28 autopilot, plus any other SimNet compatible instruments, such as IS20 Compass and Rudder displays. SimNet also features Slim Line connectors for easy cable routing, so you'll be up and running in very little time. Virtual Rudder Feedback This unique feature, recently introduced to Simrad autopilots means that no rudder feedback unit is needed for outboards and stern drive boats. In terms of installation, you will save a huge amount of time and aggravation thanks to this sophisticated new feature. Automatic Tuning The AP28 include a number of self-calibrating features that automatically compensate for the unique handling characteristics of your boat and sea conditions, insuring optimum performance without the need for expert manual calibration. Simrad engineering ensures that you can always go to sea in the confidence that your Autopilot is pin-point accurate and highly reliable. The AP28 boasts state of the art technology so you know you'll be safe, you know you'll hit your way points and you know that you'll arrive on time. But what about en-route? What can the AP28 do for you? Contour Steering This unique Simrad feature utilizes data from your fishfinder or depth instrument to maintain a set water depth, just as if you were manually steering your boat along depth contours on a paper chart. This leaves you free to concentrate on the big catch, enjoy the shoreline view or trim your sail. Integrated Turn PatternsWhen fishing or looking for a wreck, you might choose from a variety of automatic steering patterns that can help you in your search. Advanced Wind SteeringThe AWS feature provides unbeatable autopilot performance for any sailing vessel. AWS is ideal for single-handed sailing or racing. Utilizing wind and GPS data simultaneously, it is possible to hit long distance waypoints dead-on, without deviating from the original course line or build-up of significant cross track error.Rate Of Turn ControlThe AP28 is equipped with advanced control algorithms that enable smooth and precise turns regardless of sea conditions. This feature also improves tack and gybe performance on sailboats. Data PagesThe AP28 include a number of data pages where you can view autopilot parameters such as compass heading, set course, rudder position, as well as information received from other SimNet compatible equipment such as GPS navigation data and IS20 wind, depth and speed data.Multi-Station OperationExpanded multi-station compatibility offers several control options including use of the AP24 control unit. Any future autopilot control units will also work thanks to the SimNet system.

 

On rare occassions, our Ebay stock differs from our wharehouse stock.  You can email us before your payment if you would like to make sure we have it available.  If you purchase and pay for your item and its not in stock, we will instantly refund your money or we can put the it backorder.

 

WE ACCEPT PAYMENTS VIA PAYPAL You can access eBay Checkout through the following ways:  

Your My eBay Bidding/Watching page, in the 'Items I've Won' section, click on the 'PAY NOW' button.  The eBay end of auction email, click on the 'Buyer, to complete this sale via Checkout, click here' link, then from the 'Buyers Payment Status', click the 'PAY NOW' button  

Sales Tax

Sales tax will apply sales tax during checkout for deliveries to Ohio and applied to final sale price.

Shipping

After you have successfully paid for your item, please allow 24 hours for processing.

Buyers are responsible for all shipping and handling charges. We ship to all 48 contiguous States.  Items are shipped using the shipping option you chose at checkout. We can use ground shipping, 2nd day or next day shipping. . We can combine shipping on multiple orders.  Shipping to Hawaii, Alaska, and Puerto Rico will incur additional shipping charges.  Please email us for a shipping costs. 

Warranty

All products are new in package unless otherwise noted.  All manufacturing warranties apply if any.

Returns:We have a 7-day return policy for stock items. Anything in this category must be in brand new condition, and in it's factory carton. Those are accepted without a restock charge. We do not accept open blister packs or returns on any software. All other returns are handled on a case-by-case basis and are subject to a restock charge. All returns require a return reference number

Powered by eBay Turbo ListerThe free listing tool. List your items fast and easy and manage your active items.

On Dec-09-11 at 14:11:09 PST, seller added the following information:

Sellers: Delight buyers. Get your own map of past buyers.

var urlAddress = location.search; var frame = urlAddress.indexOf("ItemDescV4"); if(frame < 0) { var hashSpot = urlAddress.indexOf("hash=item"); if(hashSpot > -1) { var urlAddress = location.pathname; var slashSpot = urlAddress.lastIndexOf("/"); var ebayItemID = urlAddress.substring(slashSpot+1); } else { var itemFound = urlAddress.indexOf("item="); var ebayItemID = urlAddress.substring(itemFound+5); var amperSpot = ebayItemID.indexOf("&"); if(amperSpot > -1) {ebayItemID = ebayItemID.substring(0,amperSpot)}; } } var seller="wakezonemarine"; var flash_code=''; document.write(flash_code);

Click HERE for more information about this item.