// convert user agent string to lower case
var agt=navigator.userAgent.toLowerCase();

// test for Safari
var safari_installed = false;
if (agt.indexOf("safari") != -1) {safari_installed = true;}

// test for Windows 98
var windows98 = false;
if (agt.indexOf("windows 98") != -1) {windows98 = true;}

// test for AOL on a Mac
var aol_on_mac = false;
if (agt.indexOf("aol") != -1 && agt.indexOf("macintosh") != -1) {aol_on_mac = true;}

//alert (navigator.userAgent);
//alert ("flash installed = " + flashinstalled);
//alert ("flash version = " + flashversion);
//alert ("safari_installed: " + safari_installed);

if ((safari_installed == false && windows98 == false && aol_on_mac == false) && (flashinstalled == 2 && flashversion >= 6)) 
{
	//alert ("Show Flash movie!!!!");
	document.write("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,65,0\" width=\"330\" height=\"230\" id=\"text\" align=\"middle\">");
	document.write("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
	document.write("<param name=\"movie\" value=\"images/logo.swf\" />");
	document.write("<param name=\"quality\" value=\"high\" />");
	document.write("<param name=\"wmode\" value=\"opaque\" />");
	document.write("<param name=\"bgcolor\" value=\"#e6e2d7\" />");
	document.write("<embed src=\"images/logo.swf\" quality=\"high\" wmode=\"opaque\" bgcolor=\"#e6e2d7\" width=\"330\" height=\"230\" name=\"text\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.write("</object>");

}
else
{
	//alert ("No Flash movie!!!!");
	document.write("<img src=\"images/home_logo.gif\" alt=\"Design Concepts: Community and Landscape Architects\" width=\"330\" height=\"230\" hspace=\"0\" vspace=\"0\" border=\"0\">");
}