This is a test of QuickTime embedded...



Calling a JavaScript function which takes an object referenced by name
javascript:PlayIt(document.movie1)
javascript:StopIt(document.movie1)
javascript:PlayIt(document.movie2)
javascript:StopIt(document.movie2)

Calling an object (referenced by name) method directly
javascript:document.movie1.Play()
javascript:document.movie1.Stop()
javascript:document.movie2.Play()
javascript:document.movie2.Stop()

Calling an object (indexed in the document "embeds" array by index) method directly
javascript:document.embeds[0].Play()
javascript:document.embeds[0].Stop()
javascript:document.embeds[1].Play()
javascript:document.embeds[1].Stop()

Calling an object (indexed in the document "embeds" array by name) method directly
javascript:document.embeds['movie1 ].Play()
javascript:document.embeds['movie1'].Stop()
javascript:document.embeds['movie2'].Play()
javascript:document.embeds['movie2'].Stop()