// JavaScript Document

 var b = new BrowserInfo();

 if (b.name == "Microsoft Internet Explorer"){
 	//alert(b.name); 
	document.write("<link rel='stylesheet' type='text/css'  ef='css/ie-7lte-hacks.css' media='screen' />");
 }
 
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;

}

