function ShowFlash(id, src, width, height, bgcolor) {
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" id="'+id+'" align="">\n');
    document.write('<param name="movie" VALUE="'+src+'"> <param name="quality" value="high"> <param name="bgcolor" value="'+bgcolor+'">\n');
    document.write('<embed src="'+src+'" quality="high" bgcolor="'+bgcolor+'" width="'+width+'" height="'+height+'" name="'+id+'" align="" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>\n');
    document.write('</object>\n');
}

/*

<!--in head-->
<script src="flash.js" type="text/javascript" language="javascript"></script>

<!--object insertion code-->
<script type="text/javascript" language="javascript"><!--
ShowFlash('','','','','');
//--></script>

*/
