// JavaScript Document
//function that class flash
			function show(tempBol)
			{
				getFlashMovieObject("nsbi").showControls(tempBol);
			}
        
			//function that ID's the flash movie for the javascript to call
			function getFlashMovieObject(movieName)
			{
				if (window.document[movieName]) 
				{
					return window.document[movieName];
				}
				if (navigator.appName.indexOf("Microsoft Internet")==-1)
				{
					if (document.embeds && document.embeds[movieName])
				  	return document.embeds[movieName]; 
				}
					else // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
				{
					return document.getElementById(movieName);
				} 	
			}	
