  function embedVideo(sVideoName, iHeight, iWidth)
  {
    document.write('<object height="' + iHeight + '" width="' + iWidth + '" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="://www.apple.chttpom/qtactivex/qtplugin.cab">\n');
    document.write('<param name="src" value="' + sVideoName + '">\n');
    document.write('  <embed height="' + iHeight + '" width="' + iWidth + '" src="' + sVideoName + '">\n');
    document.write(' </embed>');

  }

  function embedFlash(sFlashName, iHeight, iWidth)
  {
    document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" height="' + iHeight + '" width="' + iWidth + '" >\n');     
    document.write('<param name="movie" value="' + sFlashName + '">\n');
    document.write('<param name="quality" value="high">\n');
    document.write('<EMBED src="' + sFlashName + '" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" width="' + iWidth + '" height="' + iHeight + '"></EMBED>\n');
  }
