// JavaScript Document

function checkPages(xhrResponse){
	if (location.hostname == 'www.focusonlinecommunities.com') {
		secure = xhrResponse.responseText.evalJSON();
		pathArray = window.location.pathname.split( '/' );
		curPage = pathArray[pathArray.length-1];
		if ((secure.pages.toString().indexOf(curPage)!=-1) && location.protocol=="http:"){
			window.location="https:"+ "//" + window.location.host  + window.location.pathname + '?' + window.location.search;
		} else if((secure.pages.toString().indexOf(curPage)=-1) && location.protocol=="http:"){return false;
		} else if((secure.pages.toString().indexOf(curPage)!=-1) && location.protocol=="https:"){return false;
		} else if((secure.pages.toString().indexOf(curPage)=-1) && location.protocol=="https:"){
			window.location="https:"+ "//" + window.location.host  + window.location.pathname + '?' + window.location.search;
		}
	}
}