function show_flash(src, movie, width, height, bgcolor)
{

	document.write("<object id=\"movie\" classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://active.macromedia.com/flash2/cabs/swflash.cab#version=6,0,0,0\" width=\"" +width+ "\" height=\"" +height+ "\">");
	document.write("<param name=\"movie\" value=\"" +src+ "\" />");
	document.write('<param name=\"loop\" value=\"true\">');
	document.write('<param name=\"play\" value=\"true\">');
	document.write("<param name=\"menu\" value=\"false\" />");
	document.write("<param name=\"quality\" value=\"best\" />");	
	document.write("<param name=\"bgcolor\" value=\"" +bgcolor+ "\" />");
	document.write("<embed src=\"" +src+ "\" swLiveConnect=\"true\" menu=\"false\" quality=\"best\" bgcolor=\"" +bgcolor+ "\" width=\"" +width+ "\" height=\"" +height+ "\" name=\"" +movie+ "\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" />");
	document.write("</object>");
	document.write("<img src=\"images/leer.gif\" alt=\"\" name=\"teaser\" width=\"292\" height=\"72\" border=\"0\">");

}