// JavaScript Document
//

function InsertFlash(id, path, width, height)
{
	<!-- <![CDATA[ 
	
	document.write('	<object ');
	
	document.write('		type="application/x-shockwave-flash"');
	document.write('		data=' + path);
	        
	document.write('		width="' + width + '" height="' + height + '"');
	document.write('		id="' + id + '"			');
	document.write('		>');
	          
	document.write('		<param name="movie" value="' + path + '" />');
	document.write('		<param name="allowScriptAccess" value="sameDomain" />');
	document.write('		<param name="quality" value="high" />');
	document.write('		<param name="bgcolor" value="#ffffff" />');		
	
	document.write('	</object>');
	
	//]]> -->
}
