function showFlash(file,width,height){
	document.write('<object data="'+file+'" type="application/x-shockwave-flash" height="'+height+'" width="'+width+'">');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="movie" value="'+file+'" />');
	document.write('<param name="play" value="true" />');
	document.write('<param name="loop" value="true" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="quality" value="high" />');
	document.write('</object>');
}