﻿//Identifying the Country Code and Language Code Starts here
//?cntry_cd=SA&lang_cd=en
	var ctryCd="";
	var lgCd="";
	var dealerName_from_DL;
	if (location.href.indexOf("/action")==-1) //i.e. If the page is Not A JSP
	{
		if(location.href.indexOf("/en/")>0)
		{
			ctryCd=location.href.split("/en/");
			lgCd="/en/";
		}
		if(location.href.indexOf("/ar/")>0)
		{
			ctryCd=location.href.split("/ar/");
			lgCd="/ar/";
		}
		ctryCd=ctryCd[0].substring(ctryCd[0].length-2);
	}
	else
	{
		var loc = location.href;
		ctryCd=loc.substr(loc.indexOf("cntry_cd")+9,2);
		if(location.href.indexOf("en")>0)
		{
		lgCd="/en/";
		}
		else if(location.href.indexOf("ar")>0)
		{
			lgCd="/ar/";
		}
	}
	
document.write("Redirecting...");
abs_path="/GBPServiceMgr2.dyn?CntryCd=ME&LangCd=ar&WebSiteID=GBPME&ReqsType=Pull&ServiceName=RequestBrochure&NampltCd=006^pageredirect&SellingSrc=72&cnInput=006/index.html^"+ctryCd;
location.href= abs_path;

