You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
433 B

// common sniffing code
g_sUA = window.navigator.appVersion;
if (parseInt(g_sUA.indexOf("MSIE ")) >= 0) // Check if IE
{
g_isIE = true;
g_iMaj = parseInt(g_sUA.substring(g_sUA.indexOf("MSIE ")+5,g_sUA.indexOf (".",g_sUA.indexOf("MSIE "))));
if (g_sUA.lastIndexOf("Win") >= 0)
g_sPlat = "Win";
}
else if (parseInt(g_sUA.lastIndexOf("Nav")) >= 0)
{
g_isNav = true;
g_iMaj = parseInt(g_sUA.substring(0, g_sUA.indexOf('.')));
}