var br = GetBrowser();        // Returns either "IE" or "Netscape"
var pm = GetPlayerMajorVer(); // Returns Windows Media Player major version #
var pn = GetPlayerMinorVer(); // Returns Windows Media Player minor version #

if (pm==6 && pn==4) {
	//WMP 6.4 ActiveX
	window.location.replace("PlayerDetection2.aspx?br="+br+"&wmp=ActiveX64"); 
} else if (pm>=7) {
	//WMP 7 (or greater) ActiveX
	window.location.replace("PlayerDetection2.aspx?br="+br+"&wmp=ActiveX7"); 
} else if (br=="IE") {
	//Internet Explorer & No WMP
	window.location.replace("PlayerDetection2.aspx?br=IE"); 
} else if (br=="Netscape" && parseInt(navigator.appVersion)<5 && IsNSPluginInstalled()) {
	//Netscape & WMP 6.4 Plugin
	window.location.replace("PlayerDetection2.aspx?br=NS&wmp=Plugin64"); 
} else if (br=="Netscape") {
	//Netscape and WMP 9 applet
	//window.location="PlayerDetection2.aspx?br=NS&wmp=Applet9"; 
	//Applet doesn't seem to work.
	window.location.replace("PlayerDetection2.aspx?br=NS"); 
} else {
	//Other browser
	window.location.replace("PlayerDetection2.aspx?br=UN"); 
}		
