/**
 * @author jlved
 */
function gAutMot(idaut){
	var l=document.getElementById('listemotscles');
	var v=l.options[l.selectedIndex].value;
	var base="spip.php?page=auteur&id_auteur="+idaut;
	if (v != '0') {
		window.location.href = base+"&id_mot=" + v
	}else{
		window.location.href = base;
	}
}