var browserName=navigator.appName; 
if (browserName=="Microsoft Internet Explorer")
{ 
//load ie friendly stylesheet
//document.write('<link rel="stylesheet" href="/compression/css/f5.css" type="text/css">')
}
else 
{ 
if ((parseFloat(navigator.appVersion)) >= 5 )
{
// if ns version is great than or equal to 5 (6) load this stylesheet
// document.write('<link rel="stylesheet" href="/compression/css/f5_ns.css" type="text/css">')
} else {
//if you have a really ancient browser ;-) (ie. NS 4.7 or earlier) load this stylesheet
//document.write('<link rel="stylesheet" href="/compression/css/f5_ns4.css" type="text/css">')

}
}
