<!--
// Globals
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
jsVersion = 1.1;

function netscape(){
	if (navigator.plugins != null && navigator.plugins.length > 0) {				
		if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
			window.location.href = "flash.html";  
			return;
		}						
	}
	else 
		window.location.href = "htmlCN.html";
	return;
} 

function explorer(){	
	for (  i=25; i>0; i--) {		
		if (VBGetSwfVer(i)){
			window.location.href="flash.html";
			return;
		}			
	}	
	window.location.href = "htmlCN.html";
}

if (isIE && isWin && !isOpera) 
	explorer();	
else	
	netscape();
// -->

