
function displayEnglish() {
  var urlPath = document.location.href;
  var strEng=urlPath.split("/arabic/");
  var arabicURL=strEng[0]+"/"+strEng[1]
  document.location.assign(arabicURL);  
}


function displayArabic() {

	var urlPath = document.location.href;
	//var tempstr= urlPath.replace(/ihc.ae/,"www.ihc.ae");
	var tempstr=urlPath;  
	var strEng=tempstr.split("ihc.ae");
	
	if(strEng[1]=="" || strEng[1]==undefined || strEng[1]=="/")
	{ 
	strEng[1]="/default.asp"
	}  

	var arabicURL=strEng[0]+"ihc.ae/arabic"+strEng[1]
	document.location.assign(arabicURL);
  
}