// name of the movie from the id and name fields ( must match )
var movieName = "flash_blue_bar";

		function thisMovie(movieName) {
	 		// IE and Netscape refer to the movie object differently.
	  		// This function returns the appropriate syntax depending on the browser.

	 		 //if (navigator.appName.indexOf ("Microsoft") !=-1) {
	     	//		return window.getByElementId(movieName)
	  		// } else {
	     	//		return document.getByElementId(movieName)
	   		//}
	   		
	   		return document.getElementById(movieName);
		}

		// Checks if movie is completely loaded.
		// Returns true if yes, false if no.
		
		function movieIsLoaded (theMovie) {
  			// First make sure the movie's defined.

  			if (typeof(theMovie) != "undefined") {
   				 // If it is, check how much of it is loaded.
    				return theMovie.PercentLoaded() == 100;
  			} else {
   				 // If the movie isn't defined, it's not loaded.
    				return false;
  			}
		}

		// This is the function to call onMouseOver of image
		
		function playmovie(Frame) {
			//alert("going to frame:" + Frame);
			
			if (movieIsLoaded(thisMovie(movieName))) {
				//alert("going to frame:" + Frame);
	  			thisMovie(movieName).GotoFrame(Frame);
				thisMovie(movieName).Play()
			}
		}	
