function include_color(text,color)
{
 var temp_array=new Array(text.length);
 var pos_color=0;

 for(var i=0;i<text.length;i++)
 {
  if(text.charAt(i)=="_")
  {
   temp_array[i]="<font color=\"#000000\">"+text.charAt(i)+"</font>";
  }
  else
  {
   temp_array[i]="<font color=\""+color[pos_color]+"\">"+text.charAt(i)+"</font>";
   if(pos_color<color.length-1) pos_color++; else pos_color=0;
  }   
 }

 return temp_array;
}



function gettext(text,von,bis)
{
 var temp_text="";

 if(von>=bis) return "";

 for(var e=von;e<bis;e++)
 { 
  temp_text=temp_text+text[e];
 }

 return temp_text;
}
