
browser=navigator.appName;

// Tipica dimostrazione del perche' IE andrebbe abolito...
if ((browser=="Microsoft Internet Explorer")) {
  document.write('<link rel="stylesheet" type="text/css" href="stile_ie.css">');
 } else {
  document.write('<link rel="stylesheet" type="text/css" href="stile.css">');
 }


