function playmovie_pingo_small ()
{
/* ------------------------------------------------------------------------
We moved the object/embed out of the page source into this external js
file, on recommendation from apple, to accommodate new IE. See:
http://www.apple.com/quicktime/tutorials/embed.html.

The object params and embed attributes must be kept identical, except for
classid, codebase, and pluginspage.

Note: we tried a version using HREF (for the movie), SRC (for the start
image), and TARGET (so the movie would replace the image when played)
but it didn't work under firefox or IE.  Thus using this bare-bones approach.
------------------------------------------------------------------------ */

document.write ('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="264" alt="Video of Pingo reception" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
  document.write ('<param name="SRC"        value="/news/media/pingo_small.mov">');
  document.write ('<param name="AUTOPLAY"   value="false">');
  document.write ('<param name="CONTROLLER" value="true">');

document.write ('<embed width="320" height="264" bgcolor="FFFFFF" border="0"' );
  document.write ('src="/news/media/pingo_small.mov" ');
  document.write ('autoplay="false" ');
  document.write ('controller="true" ');
  document.write ('pluginspage="http://www.apple.com/quicktime/download/">');
document.write ('</embed>');            

document.write ('</object>');
}