// JavaScript Document
function flash(name,width,height,bgcolor)	{

document.write('<object type="application/x-shockwave-flash" data="' + name + '" width="' + width + '" height="' + height + '"  >' + 
 '   <param name="movie" value="' + name + '" />' + 
  '  <param name="WMODE" value="' + bgcolor + '" />' + 

 ' </object>');

}

