// Quick little javascript to grab Flash app....
// Mike Hansen (in Chicago) 2001



if ((navigator.appName == "Microsoft Internet Explorer" 
&& navigator.appVersion.indexOf("Mac") == -1 
&& navigator.appVersion.indexOf("3.1") == -1)
|| (navigator.plugins && navigator.plugins["Shockwave Flash"])
|| navigator.plugins["Shockwave Flash 2.0"]) {

	//Load tags needed to embed Flash applet.
	document.write('<embed src="http://www.fordfalcon2000.com/Logo.swf" WIDTH="250" HEIGHT="165" border="0" TYPE="application/x-shockwave-flash"></EMBED>');
	
} else {

	//Load tags needed to embed static image.
	document.write('<img src="http://www.fordfalcon2000.com/sitemainimages/logo1.gif" alt="Welcome!" WIDTH="250" HEIGHT="165">');
}