
function togglelanguage(a, l, id) {
	a.href = "#";
	var s = "";
	s = "box_p"+id+"_"+l;
	if (document.getElementById(s)) {
		var p = document.getElementsByTagName("DIV");
		if (p) {
			for (i=0; i<p.length; i++) {
				if (p[i].className) {
					if (p[i].className.toString().toLowerCase().indexOf("langboxp"+id)!=-1) { p[i].style.display="none"; } // endif
				} // endif
			} // next
		} // endif
		p = document.getElementsByTagName("A");
		if (p) {
			for (i=0; i<p.length; i++) {
				if (p[i].className) {
					if (p[i].className.toString().toLowerCase().indexOf("langlnkp"+id)!=-1) {
						p[i].childNodes[0].style.filter="alpha(opacity=100)";
						p[i].childNodes[0].style.opacity="1";
					} // endif
				} // endif
			} // next
		} // endif
		document.getElementById(s).style.display = "";
		a.childNodes[0].style.filter="alpha(opacity=30)";
		a.childNodes[0].style.opacity="0.3";
	} // endif
	return false;
} // endif
