var allA = document.getElementById('langLinkOuter').getElementsByTagName('a');
for(i=0;i<allA.length;i++)
{
	allA[i].onclick=function()
	{
		if(window.confirm(langConfirmTxt))
		{
			return true;
		}
			else
		{
			return false;
		}
	};
}
