// JavaScript Document

swfFile = "http://www.bermanlawyers.com/swf/flashing_ea_button";

//---------------------FLASH--EMBED-------------------//
function embedFlash() {
 document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
 document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
 document.write('width="495" height="53" align="middle">');
 document.write('<param name="allowScriptAccess" value="sameDomain">');
 document.write('<param name="movie" value="' + swfFile + '.swf">');
 document.write('<param name="menu" value="false">');
 document.write('<param name="quality" value="high">');
 document.write('<param name="wmode" value="transparent">');
 document.write('<embed src="' + swfFile + '.swf" menu="false" quality="high" ');
 document.write('width="495" height="53" align="middle" ');
 document.write('allowScriptAccess="sameDomain" type="application/x-shockwave-flash" ');
 document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" width="360" height="325" wmode="transparent"></embed></object>');
 }


// put in html where you want flash to go //

/*----- 
<script type="text/javascript">embedFlash(); </script> 
-----*/

