/* define function that calls QuickTime's "Play" method */
function PlayIt (playMovie)
{
	playMovie.Play();
}

/* define function that calls QuickTime's "Stop" method */
function StopIt(name)
{
	name.Stop();
}

/* show the movie */
function showMovie (show, hide)
{
	s = document.getElementById(show);
	s.style.display = 'block';
	
	h = document.getElementById(hide);
	h.style.display = 'none';
}