/* author: HISSON Paul */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 15/05/02 */
function string2GIF(texte,alphabet)
{
  var c="";
  var img="";
  for(var i=0;i<texte.length;i++)
  {
    c=texte.charAt(i);
	switch(c)
	{
	  case " " : img="espace.gif"; break;
	  case "&" : img="amp.gif"; break;
      case "*" : img="aster.gif"; break;
	  default :
	  if((c >= "a")&&(c <= "z")) img = c+"02.gif";
	  if((c >= "A")&&(c <= "Z")) img = c.toLowerCase()+"01.gif";
	  break;
	}
  document.write("<IMG SRC=\""+alphabet+"/"+img+"\">");	
  }
}

