
function PlayTheMovieWithThumbnail(thumbnail, filename, width, height)
{
height = height + 16 // allow for controller
document.write('<object width="' + width + '" height="' + height + '" \n');
document.write('  classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" \n');
document.write('  codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('  <param name="src" value="/movies/' + thumbnail + '">\n');
document.write('  <param name="href" value="/movies/' + filename + '">\n');
document.write('  <param name="target" value="myself">\n');
document.write('  <param name="controller" value="false">\n');
document.write('  <param name="autoplay" value="false">\n');
document.write('  <embed src="/movies/' + thumbnail + '" width="' + width + '" height="' + height + '" \n');
document.write('    autoplay="false" controller="false" \n');
document.write('    href="/movies/' + filename + '" target="myself" \n');
document.write('    pluginspage="http://www.apple.com/quicktime/download/">\n');
document.write('  </embed>\n');
document.write('</object>\n');
}

function PlayTheMovie(filename, width, height)
{
height = height + 16 // allow for controller
document.write('<object width="' + width + '" height="' + height + '" \n');
document.write('  classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" \n');
document.write('  codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('  <param name="src" value="/movies/' + filename + '">\n');
document.write('  <param name="controller" value="true">\n');
document.write('  <param name="autoplay" value="false">\n');
document.write('  <embed src="/movies/' + filename + '" width="' + width + '" height="' + height + '" \n');
document.write('    autoplay="false" controller="true" \n');
document.write('    pluginspage="http://www.apple.com/quicktime/download/">\n');
document.write('  </embed>\n');
document.write('</object>\n');
}
