function drawFlash( path, width, height, transparent, xhtml ){
	transparent = transparent || false;
	xhtml = xhtml || true;

	if( xhtml ){
		document.writeln('<object type="application/x-shockwave-flash" data="'+path+'" width="'+width+'" height="'+height+'">');
		document.writeln('	<param name="movie" value="'+path+'" />');
		if( transparent )
			document.writeln('	<param name="wmode" value="transparent"/>');
		document.writeln('</object>');}
	else{

	}
}