/**************************************************
	used to jump between english and hebrew sites
	targetLang values: he, en

***************************************************/
function ToggleLanguageAndReloadPage(targetLang) {
	var newURL = window.location.href;
	
	if (targetLang == "he") {
		var pathArray = window.location.pathname.split("/en/");
		var newPath = pathArray.join("/");
		newURL = window.location.protocol + "//" + window.location.host + newPath + window.location.search;
	}
	
	if (targetLang == "en") {
		newURL = window.location.protocol + "//" + window.location.host + "/en" + window.location.pathname + window.location.search;
	}
	
	window.location.assign(newURL);
}

