	//---------------------------------------------------------------
	//	Customize this for each website
	//---------------------------------------------------------------

	var href = document.location.href;

	if (href.indexOf("acmeent") == -1) {
		var RUN_LOCAL 	= false;
		var BASE_URL  	= "http://www.acmeenterprises.com";
	}
	else {
		RUN_LOCAL = true;
		BASE_URL  = "/acmeent";
	}

	//	Default page configuration

	var  AUTO_RESIZE    = false;	//	resize browser to fit Acme pages?
	var  AUTO_REFRAME   = false;	//	reframe the page?
	var  NO_RIGHT_CLICK = true;		//	disallow right click?


	//	Check for browser version; this approach avoids a function call.

    var isNS = (navigator.appName == "Netscape" && 
				parseInt(navigator.appVersion) >= 4);

