// JavaScript Document

	
function RunCar()
{
	
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="458" height="250">\n');
   document.write('<param name="movie" value="images/mycar.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
  // document.write('<PARAM NAME="wmode" VALUE="transparent" />\n');
   document.write('<embed src="images/mycar.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="458" height="250"></embed>\n');
   document.write('</object>\n');
}
function RunCarInDiv()
{
	var dvObject=document.getElementById("flashController");
	dvObject.innerHTML="";
	var flashString="";
   flashString='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="458" height="250">\n';
   flashString+='<param name="movie" value="images/mycar.swf" />\n';
   flashString+='<param name="quality" value="high" />\n';
  // document.write('<PARAM NAME="wmode" VALUE="transparent" />\n');
   flashString+='<embed src="images/mycar.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="458" height="250"></embed>\n';
   flashString+='</object>\n';
   dvObject.innerHTML=flashString;
}	
	
                            
                            
                     