// Check to see which hostname is being used, and remove the www if necessary.
// This is to ensure that everyone uses the same hostname for more consistant statistics.
var currenthost = location.hostname;
if (currenthost == "www.bcwildfire.ca") {
	var oldURL = window.location.toString();
	var newURL = oldURL.replace("www.bcwildfire.ca", "bcwildfire.ca");
	window.location=newURL;
	//document.write (newURL);
	}

