// JavaScript Document
function scrolling()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="210" width="490">\n');
   document.write('<param name="movie" value="intrepid.swf"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="intrepid.swf" ... height="210" width="490"></embed>\n');
   document.write('</object>\n');
}
function scrolling2()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="210" width="490">\n');
   document.write('<param name="movie" value="intrepid2.swf"/>\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="intrepid2.swf" ... height="210" width="490"></embed>\n');
   document.write('</object>\n');
}
<!--
<!--
function SelectAll(id)
{
    document.getElementById(id).focus();
    document.getElementById(id).select();
}
