var strPath='images/icons/icon-langs/';

function	iconLangColor(strLang){

		var elmImg=document.getElementById("image_" + strLang);
		var elmLink=document.getElementById("link_" + strLang);
		
		elmImg.src=strPath + "color/" + strLang + "_cl.gif";
		elmLink.style.fontWeight="bold";
		elmLink.style.textDecoration="underline";
} 



function	iconLangGrey(strLang){

 		var elmImg=document.getElementById("image_" + strLang);
		var elmLink=document.getElementById("link_" + strLang);
		
		elmImg.src=strPath + "bw/" + strLang + "_bw.gif";
		
		elmLink.style.fontWeight="normal";	
		elmLink.style.textDecoration="none";	
}
