function InsertSampleMovie ( thefile, width, height ) {

document.write ( "<object classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\" width=\"" + width + "\" height=\"" + height + "\" align=\"middle\">" ) ;
document.write ( "<param name=\"src\" value=\"movies/" + thefile + ".mov\" />" ) ;
document.write ( "<param name=\"autoplay\" value=\"false\" />" ) ;
document.write ( "<param name=\"controller\" value=\"true\" />" ) ;
document.write ( "<embed src=\"movies/" + thefile + ".mov\" autoplay=\"false\" starttime=\"00:01:05.0\" width=\"" + width + "\" height=\"" + height + "\" scale=\"tofit\" controller=\"true\" align=\"middle\" bgcolor=\"gray\" pluginspage=\"http://www.apple.com/quicktime/download/\">" ) ;
document.write ( "</embed>" ) ;
document.write ( "</object>" ) ;

}
