if (navigator.appName == "Microsoft Internet Explorer"){
  var version = navigator.appVersion;
  var pos1 = version.indexOf("MSIE ");
  var number = version.substring(pos1 + 5, version.indexOf(".", pos1))
  if (number > 6){
     if ((screen.width < 900))
     {
       document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/IE7ms_800.css\"> ");
     }
     if ((screen.width > 901 && screen.width < 1050 ))
     {
      document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/IE7ms_1024.css\"> ");
     }

    if ((screen.width > 1050))
     {
       document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/IE7ms_1280.css\"> ");
     } 

  }else {
     if ((screen.width < 900))
     {
       document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/ms_800.css\"> ");
     }

     if ((screen.width > 901 && screen.width < 1050 ))
     {
      document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/ms_1024.css\"> ");
     }
    
     if ((screen.width > 1050))
     {
       document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/ms_1280.css\"> ");
     }
 }
} else { 

  if ((screen.width < 900))
  {
   document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/default_800.css\"> ");
  }

  if ((screen.width > 901 && screen.width < 1050 ))
  {
   document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/default_1024.css\"> ");
  }
  
  if ((screen.width > 1050))
  {
   document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style-sheets/default_1280.css\"> ");
  }
}