/*
  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Copyright © 2003 by Gary Johnson
Copyright (&copy;) 2003 by Gary Johnson

COPYRIGHT

The information contained on this site is protected by Canadian, United States of America and international copyright laws.

All website materials, including, without limitation, design, text, graphics, photos, files, the Fast Track! logo, and 
the selection and arrangement thereof are © 2004 Gary Johnson ALL RIGHTS RESERVED.
 
Permission is granted to electronically copy and print to hard copy portions of this website for the sole purpose of 
using materials it contains for informational and non-commercial personal use only.
 
Any other use of materials in this website, including any commercial use, reproduction for purposes other than those noted above, 
modification, distribution or republication, without the prior written consent of Gary Johnson is strictly prohibited.


The Full Copyright statement is

	http://mywebpages.comcast.net/adgj/XXSoftwareTools/Copyright.html

  ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/

/*

  <OBJECT classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
          codebase="http://www.apple.com/qtactivex/qtplugin.cab"
          width="1" height="1"
          id="wav1" >

   <PARAM name="src" value="../Sounds/PlayFunkMusicWhiteBoy.wav">

   <EMBED width="1" height="1"
          src="../Sounds/PlayFunkMusicWhiteBoy.wav"
          name="wav1"
          enablejavascript="true">
   </EMBED>
  </OBJECT>

<a href="javascript:PlayIt(document.wav1);">javascript:PlayIt(document.wav1)</a><br>
<a href="javascript:StopIt(document.wav1);">javascript:StopIt(document.wav1)</a><br>

*/


/* a javascript function that takes a QT movie and calls its "Play" method 

   anObj.Play() not a function - Mozilla 1.7
*/
function PlayIt(anObj)
{
        anObj.Play();
}
/* a javascript function that takes a QT movie and calls its "Stop" method */
function StopIt(anObj)
{
        anObj.Stop();
}
