//
// Browser detection
//
// Example:
// var b = new BrowserInfo();
// alert(b.version); 
function BrowserInfo()
{
	this.userAgent = navigator.userAgent;
  this.name = navigator.appName;
  this.codename = navigator.appCodeName;
  this.version = navigator.appVersion.substring(0,4);
  this.platform = navigator.platform;
  this.javaEnabled = navigator.javaEnabled();
  this.screenWidth = screen.width;
  this.screenHeight = screen.height;
}
var bi = new BrowserInfo();
if(bi.userAgent.toLowerCase().indexOf('firefox') > -1 || bi.userAgent.toLowerCase().indexOf('safari') > -1) {
	document.write('<link href="/common/css/ff.css" rel="stylesheet" type="text/css">');
}