// JavaScript Document
function selectLangage(l)
{
	document.forms[0].action="links.php";
	document.forms[0].CHOIX.value="selectLangage";
	document.forms[0].langage.value=l;
	document.forms[0].submit();
	return;
}