///////////////////////////////////////////////////////////////////////
// EPIC Group PLC
//
// Project Name : 10014
//
// File Description : JavaScript file to be included in all tempates
//	JavaScript file to check for whether it's running on IE or Netscape
//		
// Creation Date : Wai Lam Yau - 26/02/2001
//		
// Modification History :
//
///////////////////////////////////////////////////////////////////////

var isIE = false; // IE Flag
var isNS = false; // Netscape Flag
var browserName = navigator.appName; // Retrieve the name of the browser

// if the browser is netscape then set the variable isNS to true otherwise assume it's Internet Explorer and set the isIE to true
if (browserName == "Netscape")
	isNS = true;
else
	isIE = true;
