function getBrowser() {
  ms = navigator.appVersion.indexOf("MSIE");
  nc = navigator.appName.indexOf("Netscape");
  if (ms>=0) return "ms";
  else if (nc>=0) return "nc";
  else return false;
}

