Description
// 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;
}
// 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;
}
// 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 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;
}
}
/* eBay CARad CSS – Dealer 2.0 Template */
#CARad a:link,#CARad a { color: #0066FF !important; }
#CARad a:visited { color: #0066FF !important; }
#CARad {
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
width: 760px;
background-color: #e5e5e5;
margin: 0px auto;
text-align: left;
}
#CARad #header {
background-image: url(http://dealer.carad.com/static/images/dealer2/templates/basicnew/headerTopBG_black.gif);
background-repeat: no-repeat;
height: 41px;
color:#FFFFFF;
line-height: 40px;
padding-left: 20px;
font-size: 12px;
font-family: Tahoma, Arial, Helvetica, sans-serif;
}
#CARad #header a {
color:#FFFFFF !important;
font-size: 12px;
}
#CARad #dealerBanner {
padding: 2px 0px 0px 0px;
text-align:center;
background-color:#FFFFFF
}
#CARad #gmBanner {
text-align: center;
}
#CARad .dealerDetails {
float: left;
font-size: 16px;
width: 305px;
padding: 30px 10px 10px 10px;
margin: 5px 5px 10px 5px;
text-align:center;
}
#CARad #vehicleDetails {
width: 100%;
}
#CARad #vehicleDetails ul{
float:left;
list-style:none;
margin: 5px;
padding: 5px;
float:left;
width: 230px;
}
#CARad .certified {
padding: 20px 5px 5px 5px;
font-size: 13px;
}
#CARad .certified img {
padding-bottom: 2px;
}
#CARad .img-shadow {
float:left;
background: url(http://dealer.carad.com/static/images/dealer2/templates/basicnew/shadowAlpha.png) no-repeat bottom right;
margin: 10px 0 6px 10px;
}
#CARad .img-shadow img {
display: block;
position: relative;
background-color: #fff;
border: 1px solid #a9a9a9;
margin: -6px 6px 6px -6px;
padding: 4px;
}
#CARad .content {
padding: 5px 5px 5px 5px;
background-color: #e5e5e5;
}
#CARad #titleHeader {
background-image: url(http://dealer.carad.com/static/images/dealer2/templates/basicnew/headerTitle_black.gif);
background-repeat: repeat-x;
width: 760px;
font-size: 16px;
color:#FFFFFF;
height: 40px;
line-height: 42px;
margin-top: 2px;
font-weight: bold;
}
#CARad .sectionHeader {
background-image: url(http://dealer.carad.com/static/images/dealer2/templates/basicnew/headerSection_black.gif);
background-repeat: repeat-x;
width: 760px;
height: 29px;
font-size: 16px;
color: #FFFFFF;
font-weight: bold;
line-height: 32px;
clear:left;
}
#CARad #featuresOptions table{
width:740px;
padding:0px;
margin:10px;
font-size:12px;
border-collapse: collapse;
}
#CARad #featuresOptions table tr td{
background:#CCC;
padding:7px;
width:50%;
margin:0px;
vertical-align:top;
}
#CARad #featuresOptions table tr #column0{
border-right:solid 10px #e5e5e5;
}
#CARad #featuresOptions table p{
padding:0 0px 5px 15px;
background: url(http://dealer.carad.com/static/images/dealer2/templates/shared/disc.gif) no-repeat left top;
margin:0px 0 0 10px;
}
#CARad #photos {
text-align: center;
padding-top: 10px;
}
#CARad #photos .photo {
padding-bottom: 5px;
}
#CARad #photos .caption {
text-align: center;
font-weight: bold;
padding-bottom: 4px;
}
#CARad #photos .photoThumbnail {
border: 3px solid #666666;
}
#CARad #photos hr {
width: 80%;
}
#CARad #disclaimer {
font-size: 11px;
background-color: #FFFFFF;
border: 2px solid #e5e5e5;
padding: 5px;
}
#CARad #footer {
text-align: center;
padding: 10px;
background-color:#FFFFFF;
vertical-align:middle;
}
#CARad #seeOtherLink {
text-align:right;
padding: 5px 10px 5px 0px;
background-color: #e5e5e5;
}
#CARad .dealerDetails span{
padding:0px;
display:block;
}
#CARad .dealerDetails span.endP{
padding-bottom: 10px;
}
#CARad .worldIcon{
margin:2px 0 0 0;
height:18px;
width: 55px;
background: url(http://dealer.carad.com/static/images/dealer2/templates/shared/worldIconSmall.png) no-repeat center;
border:none;
display:block;
}
#CARad .bold{
font-weight:bold;
}
#CARad .img-shadow {
background: url(http://dealer.carad.com/static/images/dealer2/templates/basicnew/shadow.gif) no-repeat bottom right;
margin: 10px 0 6px 5px;
}
#CARad .worldIcon{ /* IE 6 */
background: url(http://dealer.carad.com/static/images/dealer2/templates/shared/worldIconSmall.gif) no-repeat center;
}
Normal false EN-US MicrosoftInternetExplorer4 1966 Ford Mustang Due to COVID returning and my older age, I will be including FREE shipping with all agreed purchases for the remainder of this year. Within the Continental United States Only and to the ports in the Continental United States for the overseas buyers. I don’t care if you live 10 miles or 1,000 miles your getting free transport. Stay Safe & Your welcome !
Nothing like a classic mustang convertible as SUMMER IS HERE !!!!!!! restored to a GT TRIBUTE this year. Engine is a 289 with an automatic transmission. Oldman Classics is selling a TRIPLE BLACK 1966 Ford The mustang starts right up and drives and runs gooooooood. Black interior be looking gooooooood as well. Has a dual exhaust system that be sounding goooooood. Black Top and rear window are good shape. Has newer set of rubber on all 4 corners. Has power top and it be working good up and down. has clean underbelly metal as you can view. trunk has a new rubber mat and trunk area it be clean. Has new GT fog lights, GT emblems and new GT gas cap This mustang 1966 convertible is ready for a new home :))) Clear title on file for lucky new owner. If you have any questions, feel free to email ASK QUESTIONS BEFORE YOU BID and NOT AFTER. IF YOU WANT TO PURCHASE, MAKE A FAIR OFFER AND I’LL SELL. NO ZERO FEEDBACK BIDDERS TERMS OF SALE: The winning bidder must pay a $500 non-refundable /* Style Definitions */ |
<!–//
function addLoadEvent(func) {
var wrappedOnLoad = window.onload;
if (typeof window.onload != "function") {
window.onload = func;
} else {
window.onload = function() {
if (wrappedOnLoad && wrappedOnLoad != window.onload) {
wrappedOnLoad();
}
func();
};
}
}
addLoadEvent(function() {
for(var i = 0; i
<p align="center"> </p>
<p>Oldman Classics is selling a 1967 Ford Mustang Factory Coupe with the GT350 theme.</p>
<p>The mustang starts right up and drives and runs grrrrrrrrrrrrrrrreat.</p>
<p>Engine is V8 289 engine with an Auto Transmission . Engine runs very strong with good compression</p>
<p>Mustang has the GT350 look with black stripes. painted this year . has tinted windows</p>
<p>the Interior is 100% all new. looks amazing. Equipped with Air Conditioning and powersteering</p>
<p>Mustang rides with new tires all around / new american racing rims all around . $1,500 price for that</p>
<p>dual exhaust system that sound amazing. clean underside metal</p>
<p>Trunk has new Scott Drake mat. Clear title in hand . New spare tire</p>
<p>brought to Texas from California earlier this year</p>
<p>This mustang 1967 coupe is in really good condition and ready to driiiiiiiive :)))<br /> </p>
<p>If you have any questions, feel free to email thru ebay system or call this old guy……. thank you</p>
<p> </p>
<p align="left"> <strong></strong><br /><strong>I know several transort agencies so I get discounted rates for transportion on vehicles so let me know where you live and I can get you a quote . Ask questions now and not after auction.</strong></p>
<p> </p>
<p><strong><span style="text-decoration: underline;">TERMS OF SALE</span>: The winning bidder must pay a $500 <span style="text-decoration: underline;">non-refundable</span> deposit in 24hr and balance within 72-hrs after auction ends (can extend a day or two for overseas buyers).–Bank to Bank Wire transfers is form of payment accepted. If no contact is made , I reserve the right to re-list the vehicle, or sell it through any means I desire. Inspection must be made before end of auction, not afterwards. The car will not leave my possession until all funds has cleared my bank. Buyer is responsible for all shipping costs but i can assist with arrangements. <span style="text-decoration: underline;">WARRANTY:</span> This vehicle is being sold as is. It is the responsibility of the buyer to have thoroughly inspected the vehicle before bidding, not afterwards. <span style="text-decoration: underline;">PHYSICAL AUTENTICITY:</span> Every reasonable effort has been made to make sure the listed vehicle is the same as on title. The buyer agrees that the seller shall not be held responsible for any physical or mechanical properties, including but no limited to the data plate, vehicle identification number either visible or not, body style, motor, transmission or any other unknown alterations on the vehicle before or after it has been released to the buyer. <span style="text-decoration: underline;">SELLING AGREEMENT</span>: A Selling Agreement will be sent to buyer once full payment is received. A signed copy must be sent back to the seller before the Title, Bill-of-Sale and/or Vehicle will be released to buyer. </strong></p>
<p> </p><p>This vehicle is being sold as is, where is with no warranty, expressed written or implied. </p>
<p><span style="color: #0000ff;"><span style="color: #0000ff;"><strong> </strong>See auction for terms of sale</span></span></p>
<br /><br />
This auction is a legally binding contract to buy this vehicle. All vehicles are sold as-is unless otherwise specified. I have done my best to accurately describe this vehicle. It is up to the buyer to come see and further inspect the car before the end of the auction.–>
Reviews
There are no reviews yet.