function embedFlashFile(filename,width,height)
{
   /* embed flash file in html */
   if(filename==""){ return ""; }
   wh=true;
   if( width=="" || height=="")
   {
     wh="";
   }
   else {
     wh=' WIDTH="' + width + '" HEIGHT="' + height + '" ';
   }
   filepath=staticBaseURL + '/images/uploads/flash/' + filename;
   document.write(' <table border="0" cellpadding="0" align="center"><tr><td>');
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" ');
document.write( wh + '>');
document.write('<param name="movie" value="' + filepath + '">  <param name="quality" value="high"> <param name="bgcolor" value="#FFFFFF"> <param name="loop" value="true"> <EMBED src="' + filepath + '" quality="high" bgcolor="#FFFFFF"' + wh + ' loop="true" type="application/x-shockwave-flash"  pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">  </EMBED> </OBJECT>');
   document.write('</td></tr></table>');
}

