function InsertSampleMovie()
{
document.write('<object>\n');
document.write('<param name="src" value="sample.mov" />\n');
document.write('</object>\n');
}

function quicktimeplayer_backup1(videosegment) {
document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="320"HEIGHT="253" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
document.write('<PARAM name="SRC" VALUE="');
document.write(videosegment);
document.write('">');
document.write('<PARAM name="AUTOPLAY" VALUE="true">');
document.write('<PARAM name="CONTROLLER" VALUE="true">');
document.write('<EMBED SRC="');
document.write(videosegment);
document.write('" WIDTH="320" HEIGHT="253" AUTOPLAY="true" CONTROLLER="true" PLUGINSPAGE="http://www.apple.com/quicktime/download/">');
document.write('</EMBED>');
document.write('</OBJECT> ');
}

function quicktimeplayer(videosegment) {
document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"  WIDTH="320" HEIGHT="256" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">');
document.write('<param NAME="src" VALUE="http://californiaconnected.org/video/clicktoplay.mov"></param>');
document.write('<param NAME="controller" VALUE="true"></param>');
document.write('<param NAME="autoplay" VALUE="true"></param>');
document.write('<param NAME="target" VALUE="myself"></param>');
document.write('<param NAME="href" VALUE="');
document.write(videosegment);
document.write('"></param>');
document.write('<param NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/">');
document.write('<embed WIDTH="320" HEIGHT="256" CONTROLLER="false" TARGET="myself" HREF="');
document.write(videosegment);
document.write ('" SRC="http://californiaconnected.org/video/clicktoplay.mov" BGCOLOR="FFFFFF" BORDER="0" PLUGINSPAGE="http://www.apple.com/quicktime/download/index.html">');
document.write('</embed>');
document.write('</param>');
document.write('</object>');
}
