function writeHistogramme(taille, couleur) {
document.write("<td class='SmallText' width='" + 50 + "' align='right' bgcolor='#FFFFFF'>") ;
document.write(		taille + "%") ;
document.write("</td>") ;
document.write("<td width='" + 100 + "'>") ;
document.write("	<table border=0 cellspacing=0 cellpadding=0 bgcolor='#FFFFFF'>") ;
document.write("		<tr>") ;
if (taille == 0)
{
document.write("			<td width='" + taille + "' height='" + 5 + "'><img src='../images/vide.gif' width='1' height='1'></td>") ;
}
else
{
document.write("			<td width='" + taille + "' height='" + 5 + "' background='../images/barre_bleu_1px.gif'><img src='../images/vide.gif' width='1' height='1'></td>") ;
}
document.write("			<td bgcolor='#FFFFFF'>") ;
document.write("				&nbsp") ;
document.write("			</td>") ;
document.write("		</tr>") ;
document.write("	</table>") ;
document.write("</td>") ;
}
function writeError(msg) {
document.write(msg) ;
}
function writeBddError(num, lib) {
document.write(num + ":" + lib) ;
}
function writeTexte(texte) {
document.write("<div align=center>" + texte + "</div>") ;
}
function writeHistogrammePopup(taille, couleur) {
document.write("<table border=0 cellspacing=0 cellpadding=0>") ;
document.write("<tr><td width=\"" + taille + "\" background=\"../images/snd" + couleur + "x100.gif\">") ;
document.write("&nbsp") ;
document.write("</td>") ;
document.write("<td>") ;
document.write(taille + "%") ;
document.write("</td></tr></table>") ;
}
function writeOptionPopup(option) {
document.write("<td>") ;
document.write(option) ;
document.write("</td>") ;
}


