I am using this to display a video, and it works great:
<DIV ID="video">
<DIV ALIGN="CENTER" ID="video">
<P ALIGN="CENTER"><SCRIPT type="text/javascript">
// <![CDATA[
var myQTObject = new QTObject("cyclick.jpg", "courtyard", "400", "290");
myQTObject.addParam("href", "courtyard.mov");
myQTObject.addParam("autostart", "false");
myQTObject.addParam("target", "myself");
myQTObject.addParam("controller", "true");
myQTObject.write();
// ]]>
</SCRIPT>
</DIV>
My question is, if I have more that 1 video, and want to be able to use a click here.jpg to play a different one, what would the code be to do that. Thanks for any help you can give me.