<!-- CREATIU.COM - Javascript para entregar la hoja de estilos correcta al usuario -->

if (navigator.platform.indexOf("Mac") >= 0) {
   if (navigator.userAgent.indexOf("MSIE 5") >= 0)
      document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/macie5x.css">');
   else if (navigator.userAgent.indexOf("MSIE 4.") >= 0)
      document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/macie4x.css">');
   else if ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)>=5))
      document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/macns5x.css">');
   else if ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)>=4))
      document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/macns.css">');
   else
      document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/macns.css">');
} else {
  if ((navigator.appName=="Microsoft Internet Explorer")&&(navigator.appVersion.indexOf("4.")>=0))
     document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/pcie4x.css">');   
  else if((navigator.appName=="Netscape")&&(navigator.appVersion.indexOf("4.")>=0))
     document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/pcns4x.css">');
  else if((navigator.appName=="Netscape")&&(navigator.appVersion.indexOf("5.")>=0))
     document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/pcns5x.css">');
  else
     document.writeln('<LINK rel="stylesheet" type="text/css" href="styles/pcns4x.css">');
}