/* Travel Buzz JavaScript */
/* Developed by www.nuspacemedia.com */
 
/* Quicktime Movie Controls */
/* define function that calls QuickTime's "Play" method */ 
function PlayIt(anObj) 
{ 
	anObj.Play(); 
} 
/* define function that calls QuickTime's "Stop" method */ 
function StopIt(anObj) 
{ 
	anObj.Stop(); 
}