
		
		function showFlash(){
		
					hideDiv("div_noflash");
					showDiv("div_flash");
					this.moveTo(0,0);
					resizeTo(screen.availWidth,screen.availHeight);
					
				
				


//-->
		}
		function hideFlash(){
		
					showDiv("div_noflash");
					hideDiv("div_flash");
					
									


		}
	
		function detectFlash(){
		
				if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
		
		} else {
			
			   var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
			   if(hasRightVersion) {  // if we've detected an acceptable version
			   // embed the flash movie
				showFlash();
				AC_FL_RunContent(); //end AC code
			} else {  // flash is too old or we can't detect the plugin
				hideFlash();
	
			}
		}
		}
		
		

		<!--BEGIN DIV WINDOWS SCRIPT put this in an include file -->
		<!--
		// Hide the DIV by ID
		function hideDiv(divID) 
		{ 
			var divs = document.getElementsByTagName('div'); 
			for(i=0;i<divs.length;i++){ 
				if(divs[i].id.match(divID))
				{//if they are 'see' divs 
				if (document.getElementById) // DOM3 = IE5, NS6 
					divs[i].style.visibility="hidden";// show/hide 
				else 
				if (document.layers) // Netscape 4 
					document.layers[divs[i]].display = 'hidden'; 
				else // IE 4 
					document.all.hideshow.divs[i].visibility = 'hidden'; 
				} 
			} 
		} 
		// Show the DIV by ID
		function showDiv(divID) 
		{ 
			var divs = document.getElementsByTagName('div'); 
			for(i=0;i<divs.length;i++){ 
				if(divs[i].id.match(divID))
				{ 
				if (document.getElementById) 
					divs[i].style.visibility="visible"; 
				else 
				if (document.layers) // Netscape 4 
					document.layers[divs[i]].display = 'visible'; 
				else // IE 4 
					document.all.hideshow.divs[i].visibility = 'visible'; 
				} 
			} 
		} 

		//End hide -->
