Code
<script language="JavaScript"><!--
var h=(Math.random()*10);
if (h <1) document.writeln("[color=blue]ТЕКСТ[/color]");
if (h > 1 && h < 2) document.writeln("ТЕКСТ");
if (h > 2 && h < 3) document.writeln("ТЕКСТ");
if (h > 3 && h < 4) document.writeln("ТЕКСТ");
if (h > 4 && h < 5) document.writeln("ТЕКСТ");
if (h > 5 && h < 6) document.writeln("ТЕКСТ");
if (h > 6 && h < 7) document.writeln("ТЕКСТ");
if (h > 7 && h < 8) document.writeln("ТЕКСТ");
if (h > 8 && h < 9) document.writeln("ТЕКСТ");
if (h > 9 && h <10) document.writeln("[color=blue]ТЕКСТ[/color]");
// --></script>