function check_for_flash() {
//alert("We are testing javascript flash detection. Please be patient");
var ie = document.all;
var ns = (navigator.appName.toLowerCase().indexOf("netscape") > -1 ? 1:0);
var pc = false, mac = false, flash = false;

	if (navigator.appVersion.toLowerCase().indexOf("win") > -1) {
		pc = true;
	} else if (navigator.appVersion.toLowerCase().indexOf("mac") > -1) {
		if (navigator.appVersion.indexOf("MSIE 4.5") > -1) {			// Mac IE 4.5 can't detect plugins, so weed it out right now.
			flash = "mac4.5";
			mac = false;
		} else {
			mac = true;
		}
	}
	
	if ((ns) || (mac && ie))											// Netscape plugin detection (and IE mac!!!) 
	{
		for (i = 0; i < navigator.plugins.length; i++) {
			plug_description = navigator.plugins[i].description.toLowerCase();
			if (plug_description.indexOf("flash") != -1) {				// Flash plugin Exists
				if ( (plug_description.indexOf("6.0") != -1)) 
				{
					flash = 6;
					break;
				}
				else if ( (plug_description.indexOf("7.0") != -1) ||
					  (plug_description.indexOf("8.0") != -1) ||
					  (plug_description.indexOf("9.0") != -1) ||
					  (plug_description.indexOf("10.0") != -1)
					) {
					flash = 7;
					break;
				}
				else // Plugin is version 5 or less. 
				{												
					flash = 5;
					break;
				}
			}
		}
	} 

	if (ie && pc) 
	{
		var ieDetect = iedetect();
		if(ieDetect)
		{
			document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='442' height='220' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' style='margin:0;padding:0'>");
			document.write("<param name='movie' value='images/new_site_launch.swf'>");
			document.write("<param name='loop' value='true'>");
			document.write("<param name='menu' value='false'>");
			document.write("<param name='quality' value='best'>");
			document.write("<param name='scale' value='exactfit'>");
			document.write("<embed src='images/new_site_launch.swf' swliveconnect='false' width='442' height='220' loop='false' quality='high' menu='false' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' style='margin:0;padding:0'></embed>");
			document.write("</object>");
		}
		else
			document.write("<img src='images/goofy_image.jpg' alt='' width='442' height='220' border='0' style='margin:0;padding:0'>");
	}
	else if ((flash < 6 && (ns == 1 || mac == 1)) || (flash == "mac4.5"))  
	{
		document.write("<img src='images/goofy_image.jpg' alt='' width='442' height='220' border='0' style='margin:0;padding:0'>");
	}
	else 
	{
		//we're good.
		/*document.write("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' width='442' height='220' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' style='margin:0;padding:0'>");
		document.write("<param name='movie' value='/images/new_site_launch.swf'>");
		document.write("<param name='loop' value='true'>");
		document.write("<param name='menu' value='false'>");
		document.write("<param name='quality' value='best'>");
		document.write("<param name='scale' value='exactfit'>");*/
		document.write("<embed src='images/new_site_launch.swf' swliveconnect='false' width='442' height='220' loop='false' quality='high' menu='false' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/shockwave/download/index.cgi?p1_prod_version=shockwaveflash' style='margin:0;padding:0'></embed>");
		/*document.write("</object>");*/
	}
}

