﻿function trims(stringToTrim) {
	return stringToTrim.replace(/^\s+|\s+$/g,"");
}
function ltrims(stringToTrim) {
	return stringToTrim.replace(/^\s+/,"");
}
function rtrims(stringToTrim) {
	return stringToTrim.replace(/\s+$/,"");
}
function show(layerid){
	document.getElementById(layerid).style.visibility='visible';
}
function hide(layerid){
	document.getElementById(layerid).style.visibility='hidden';
}

function Lang()
{
    				var englishVal = "/en/";
				    var arabicVal = "/ar/";                  
				    if(document.location.href.toLowerCase().indexOf(englishVal) != -1)
					{
						//document.getElementById('LanguageLink').innerHTML='ÚÑÈì';
						document.getElementById('arabicbutton').onclick = "window.open(document.location.href.toLowerCase().replace(englishVal,arabicVal));"
						// document.location.href.toLowerCase().replace(englishVal,arabicVal);
						//document.getElementById('LanguageLink').style.display="block";                        
					}
					else if(document.location.href.toLowerCase().indexOf(arabicVal) != -1)
				    {
				        //convert link to English
				        //document.getElementById('LanguageLink').innerHTML="English";
				        document.getElementById('LanguageLink').onclick = "window.open('/ar/Pages/home.aspx');"
				        // document.location.href.toLowerCase().replace(arabicVal,englishVal)
				        //document.getElementById('LanguageLink').style.display="block";
				    }

}