// JavaScript Document
function embedSWF( id, path )
{
   document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="' + id + '" width="400" height="200" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">');
   document.write('<param name="movie" value="' + path + '" />');
   document.write('<param name="quality" value="high" />');
   document.write('<param name="bgcolor" value="#000000" />');
   document.write('<param name="allowScriptAccess" value="sameDomain" />');
   document.write('<param name="swLiveConnect" value="true" />');
   document.write('<embed src="' + path + '" quality="high" bgcolor="#000000"');
   document.write('width="400" height="200" name="' + id + '" align="top"');
   document.write('play="true"');
   document.write('loop="false"');
   document.write('quality="high"');
   document.write('allowScriptAccess="sameDomain"');
   document.write('type="application/x-shockwave-flash"');
   document.write('pluginspage="http://www.adobe.com/go/getflashplayer"');
   document.write('swLiveConnect="true">');
   document.write('</embed>');
   document.write('</object>');
}

