\n');
}
function SetBrowser()
{
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var movie = InternetExplorer ? arctic : document.embeds[0];
var browser = InternetExplorer ? "explorer" : "netscape";
// Mac IE can't process FSCommand so make it work like Netscape
if( (browser == "explorer") && navigator.userAgent.indexOf("Macintosh") != -1)
browser = "netscape";
// check if cookies enabled. If not, make it work like Netscape
if( browser == "explorer" )
{
document.cookie = "caller=other";
if( !(document.cookie.indexOf("caller=other") > -1) )
browser = "netscape";
}
movie.SetVariable("browser", browser);
}
onload = function()
{
setTimeout("SetBrowser()", 10000);
}
//-->