// JavaScript Document

//switching between the countries

function switchCountry(country) {
        u = location.href.split('/');
        u[3] = country;
        location.href = u.join('/');
    }
	
	
	
	function displayEnglish() 
{
	var urlPath = document.location.href;
	var strEng	= urlPath.split("/index.php/");
	var tempVar = strEng[1];
	tempVar			= tempVar.replace('ar_', "");
	var englishURL=strEng[0]+"/index.php/"+tempVar;
	document.location.assign(englishURL);
}


function displayArabic()
{
	var urlPath = document.location.href;
	var strArb=urlPath.split("/index.php/");
	var tempVar = strArb[1];
	tempVar = tempVar.replace('en_', "");
	var arabicURL=strArb[0]+"/index.php/ar_"+tempVar;
	document.location.assign(arabicURL);
}
