
// Example:

var b = new BrowserInfo();
//alert(b.name); 
/*alert(b.version);
alert(b.screenWidth); 
alert(b.screenHeight); */

function BrowserInfo()

{

  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;

}
//ung dung chuyen trang khi khong dung trinh duyet da dinh
if(b.name=="Microsoft Internet Explorer")
	window.location="vn/ie/index.php"
//document.write("Day lam IE")
else
	window.location="vn/ie/index.php"
	//document.write("Day lam khong phai IE")