
        function Map_DoFSCommand(command, args) { 
            // Handles javascript commands issued by a Flash movie. 
            // This function must be named Movie_DoFSCommand, 
            // where "Movie" is both the ID attribute of the Object tag 
            // and the Name attribute of the Embed tag. 
            // For IE, requires a VBScript sub to pass the command. 
            // refer to http://www.moock.org/webdesign/flash/fscommand/  
          if (command == "show_country") { 
            showHighlight(args);
            }
         if (command == "hide_country") {
            hideHighlight(args);
            }
        }
                
        function showHighlight( targetId ){
          if (document.getElementById){
  		        target = document.getElementById( "region." + targetId );
			    target.className = "Hover";
  	        }
        }

        function hideHighlight( targetId ){
          if (document.getElementById){
  		        target = document.getElementById( "region." + targetId );
			    target.className = "";
  	        }
        }

        function movie () {
        // Safest way to reference a Flash object:
        // http://www.permadi.com/tutorial/flashGetObject/ 
            return document["Map"] 
        }   

        function out( targetMovieClip ){
            movie().TGotoFrame(targetMovieClip,0); // out
        }

        function over( targetMovieClip ){
            movie().TGotoFrame(targetMovieClip,1); // over
        }

        function down( targetMovieClip ){
            movie().TGotoFrame(targetMovieClip,2); // down
        }
