﻿// JScript File

function changeLang()
		    {
		    strPath=location.href.toLowerCase();
		   // alert(strPath);
		        if(location.href.toLowerCase().indexOf('_ar.aspx')>0)
		        {
		        location.href=location.href.toLowerCase().replace('_ar.aspx','.aspx');
		        }
		      else if(strPath.substring(strPath.lastIndexOf('/') + 1) != '')
		        {
		        location.href=location.href.toLowerCase().replace('.aspx','_ar.aspx');
		        
	        //strPath = strPath.substring(0, strPath.lastIndexOf('/')) + '/en_' + strPath.substring(strPath.lastIndexOf('/') + 1);
		         //location.href=strPath;
		         }
		        else
		        {
		         strPath = strPath.substring(0, strPath.lastIndexOf('/')) + '/default_ar.aspx';
		         location.href=strPath;
		        }
		    }