function displayNav (section,size,dataurl) {

	if (flashinstalled == 2 && flashversion >= 7) {

		var theUrl = "/images/ewing.swf?section="+section+"&dataurl="+dataurl;
		var theWidth = "900";
		var theHeight = (size == "large")?"380":"279";
		var sAlign = "t";

		theHtml  = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" ';
		theHtml += 'codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ';
		theHtml += 'width="'+theWidth+'" height="'+theHeight+'" id="video-object">';
		theHtml += '	<param name="allowScriptAccess" value="sameDomain" />';
		theHtml += '	<param name="movie" value="'+theUrl+'" />';
		theHtml += '	<param name="loop" value="false" />';
		theHtml += '	<param name="menu" value="false" />';
		theHtml += '	<param name="quality" value="best" />';
		theHtml += '	<param name="scale" value="noscale" />';
		theHtml += '	<param name="salign" value="'+sAlign+'" />';
		theHtml += '	<param name="wmode" value="transparent" />';
		theHtml += '	<embed src="'+theUrl+'" loop="false" menu="false" quality="best" ';
		theHtml += 'scale="noscale" salign="'+sAlign+'" wmode="transparent" width="'+theWidth+'" height="'+theHeight+'" ';
		theHtml += 'id="video-embed" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ';
		theHtml += 'pluginspage="http://www.macromedia.com/go/getflashplayer" />';
		theHtml += '</object>';
	
	} else {
	
		theHtml  = '<h1><a href="http://kipewing.com/">Ewing Inc. ~ Carbon Fiber Car Upgrades</a></h1> <div id="nav"><ul> <li><a href="http://kipewing.com/home/" class="home">Home</a></li><li><a href="http://kipewing.com/products/" class="products">Products</a></li><li><a href="http://kipewing.com/cart/" class="cart">Cart</a></li><li><a href="http://kipewing.com/design/" class="design">Design</a></li><li><a href="http://kipewing.com/about/" class="about">About</a></li><li><a href="http://kipewing.com/media/" class="media">Media</a></li><li><a href="http://kipewing.com/contact/" class="contact">Contact</a></li> </ul></div>';
	
	}
	document.getElementById('flash').innerHTML = theHtml;

}