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

function RunFooEng()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="310" width="200">\n');
   document.write('<param name="movie" value="quotes-eng.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="/assetts/quotes-eng.swf" width="200" height="310"></embed>\n');
   document.write('</object>\n');
}


function MovieWoo()
{
   document.write('<object classid="clsid:D27CDB6E..." ... height="430" width="384">\n');
   document.write('<param name="movie" value="m6movie.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<embed src="./assetts/movie/m6movie.swf" width="430" height="384" base="./assetts/movie/"></embed>\n');
   document.write('</object>\n');
}
