function insertMovie(movieWidth, movieHeight, movieURL)
{
  document.write('<object id="myPlayer" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"\n');
  document.write('        height="'+ movieHeight + '" width="' + movieWidth + '">\n');
  document.write('    <param name="src" value="' + movieURL + '">\n');
  document.write('    <param name="controller" value="true">\n');
//  document.write('    <param name="scale" value="Aspect">\n');
  document.write('    <param name="bgcolor" value="#000000">\n');
  document.write('    <param name="autoplay" value="true">\n');
  document.write('    <param name="qtnext1" value="javascript:void( wait(1) );">\n');  
  document.write('    <embed  qtnext1="javascript:void( wait(1) );"   id="myPlayer" name="myPlayer" src="' + movieURL + '" width="' + movieWidth + '" height="' + movieHeight + '"  \n');
//  document.write('           type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" scale="Aspect" bgcolor="#000000"  autoplay="true"/>\n');
  document.write('           type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" bgcolor="#000000"  autoplay="true"/>\n');
  document.write('</object>\n');
}


function playerHtml(movieWidth, movieHeight, movieURL)
{
html = "";
html+='<object id="myPlayer" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"\n';
html+='        height="'+ movieHeight + '" width="' + movieWidth + '">\n';
html+='    <param name="src" value="' + movieURL + '">\n';
html+='    <param name="controller" value="true">\n';
html+='    <param name="bgcolor" value="#000000">\n';
html+='    <param name="autoplay" value="true">\n';
html+='    <param name="qtnext1" value="javascript:void( wait(1) );">\n';
html+='    <embed  qtnext1="javascript:void( wait(1) );"   id="myPlayer" name="myPlayer" src="' + movieURL + '" width="' + movieWidth + '" height="' + movieHeight + '"  \n';
html+='    type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" enablejavascript="true" controller="true" bgcolor="#000000"  autoplay="true"/>\n';
html+='</object>\n';
return html;
}

