iGelius
function rando (m,n)
{
m = parseInt(m);
n = parseInt(n);
return Math.floor( Math.random() * (n - m + 1) ) + m;
}
function rate ()
{
x=rando (3,5);
document.write("<img src='/img/ta2.gif' width=12 height=10 border=0>");
document.write("<img src='/img/ta2.gif' width=12 height=10 border=0>");
document.write("<img src='/img/ta2.gif' width=12 height=10 border=0>");
if (x>3) { document.write("<img src='/img/ta2.gif' width=12 height=10 border=0>"); }
if (x>4) { document.write("<img src='/img/ta2.gif' width=12 height=10 border=0>"); }
}