/* sets global variable bp for browser/platform (mac_ns/win_ie/win_ns/mac_ie/mac_ie5) */
var sb=((navigator.appVersion.charAt(0)<4)||((navigator.appName.indexOf('Netscape')<0)&&(navigator.appName.indexOf('Microsoft Internet Explorer')<0)));
function BP() {
  if (sb) {
    this.brow = null;
    this.plat = null;
    return this;
    // browsers not supported
    }
  this.plat = (navigator.platform.indexOf('Mac') > -1) ? 'mac' : 'win';
  if (navigator.appName.indexOf('Microsoft') > -1) {
    this.brow = 'ie'
    if (navigator.platform.indexOf('Mac') > -1 && navigator.appVersion.indexOf('MSIE 5') > -1) {
      this.brow = 'ie5'
      }
    }
  else this.brow = 'ns';
  return this;
  }
bp = new BP();

document.write('<LINK HREF="http://202.224.46.149/resource/css/' + bp.plat + '_' +
bp.brow + '.css" REL="styleSheet" TYPE="text/css">');
if (bp.brow == 'ie5') bp.brow ='ie';
