//
// Various commonly used routines
//

function isNetscape()
{
  var b = navigator.appName;
  b = b.toLowerCase();
  if (b.indexOf("netscape") != -1)
  {
	return true;
  }

  return false;
}


