/* load a CSS file */

if(navigator.appName.indexOf('Microsoft') != -1) {
  if(navigator.userAgent.indexOf('Opera') != -1) {  /* Opera old version */
    document.write('<link rel="stylesheet" href="../styleop.css" type="text/css">');
  } else {  /* Internet Explorer */
    document.write('<link rel="stylesheet" href="../styleie.css" type="text/css">');
  }
} else if(navigator.appName.indexOf('Netscape') != -1) {
  if(navigator.userAgent.indexOf('Netscape') != -1) {  /* Netscape */
    document.write('<link rel="stylesheet" href="../stylennjp.css" type="text/css">');
  } else if(navigator.userAgent.indexOf('Safari') != -1) {  /* Safari */
    document.write('<link rel="stylesheet" href="../stylesajp.css" type="text/css">');
  } else {  /* Mozilla Firefox */
    document.write('<link rel="stylesheet" href="../stylemojp.css" type="text/css">');
  }
} else if(navigator.appName.indexOf('Opera') != -1) {  /* Opera */
  document.write('<link rel="stylesheet" href="../styleop.css" type="text/css">');
} else {  /* unknown browser */
  document.write('<link rel="stylesheet" href="../styleop.css" type="text/css">');
}

/* refuse to display the page into a frame */
if(top.location != self.location) top.location.href = self.location.href;
