//alert('URL checked!');
	var mainStr = window.location.href;
	var searchStr1 = "https://"
	var searchStr2 = "http://10.1"
	if (mainStr.indexOf(searchStr2) == -1) {
		if (mainStr.indexOf(searchStr1) == -1) {
			//alert("HTTPS");
			window.location.href = "https://www.schoolsfirstfcu.org/" + document.location.pathname;
		}
	}