function browserVer4Detect() { if(navigator.appVersion.substring(0,1) < 4) URLStr
= "1.html"; else URLStr = "2.html"; window.location = URLStr; }
function browserVer4Detect() { if(navigator.appVersion.substring(0,1) < 4) URLStr
= "1.html"; else URLStr = "2.html"; window.location = URLStr; } function platformDetect()
{ if(navigator.appVersion.indexOf("Win") != -1) { alert("Windows"); } else if(navigator.appVersion.indexOf("Mac")
!= -1) { alert("Macintosh"); } else alert("Other"); }