function setURL() {

	var strURL = [];
	strURL[0] = 'http://www.stonetownphysiotherapy.ca/index.html';
	strURL[1] = 'http://stonetownphysiotherapy.ca/index.html';

	var newURL = 'http://www.stonetownphysiotherapy.ca';

	for (i = 0; i < strURL.length; i++) {
		if (location.href == strURL[i]) {
			window.location.replace(newURL);
		}
	}
}

if (document.getElementsByTagName && document.createElement) {
    setURL();
}
