// JavaScript Document

function RunFoo()
{
   document.write('<object classid="clsid:D27CDB6E..." ... width="740" height="532">\n');
   document.write('<param name="movie" value="splash.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="splash.swf" ... width="740" height="532"></embed>\n');
   document.write('</object>\n');
}

function RunFoo_2()
{
   document.write('<object classid="clsid:D27CDB6E..." ... width="760" height="170">\n');
   document.write('<param name="movie" value="header.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="header.swf" ... width="760" height="170"></embed>\n');
   document.write('</object>\n');
}

function RunFoo_3()
{
   document.write('<object classid="clsid:D27CDB6E..." ... width="120" height="400">\n');
   document.write('<param name="movie" value="buttons.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="buttons.swf" ... width="120" height="400"></embed>\n');
   document.write('</object>\n');
}