function debut_chapeau(ch) {
	var txtmax=30;
	var tab_ch=ch.split(" ");
	ch_retour="";
	if (tab_ch.length<txtmax) {imax=tab_ch.length} else {imax=txtmax};
	for (i=0;i<imax;i++) {
		ch_retour+=" "+tab_ch[i];
	}
	if (imax==txtmax) {ch_retour+=" ...";};
	return ch_retour;
}

function debut_chapeau_var(ch,v) {
	var txtmax=v;
	var tab_ch=ch.split(" ");
	ch_retour="";
	if (tab_ch.length<txtmax) {imax=tab_ch.length} else {imax=txtmax};
	for (i=0;i<imax;i++) {
		ch_retour+=" "+tab_ch[i];
	}
	if (imax==txtmax) {ch_retour+=" ...";};
	return ch_retour;
}

function premiere_phrase_gras(ch) {
	var phrasemax=1;
	var tab_ch=ch.split(".");
	for (i=0;i<phrasemax;i++) {
		tab_ch[i]="<b>"+tab_ch[i]+"</b>";
	}
	ch_retour=tab_ch.join(".");
	return ch_retour;
}
