var arnews = new Array(5);
totcount = 5;
rnd = 0;
arnews[0]="Which is longer: the Washington Redskins injury report or the credits at the end of Star Trek?
";
arnews[0] += "Which is longer: the Washington Redskins injury report or the credits at the end of Star Trek? -";
arnews[0] += "
";
arnews[1]="Fantasy Football: Cooley will be in boot for 10 more days - Chris Cooley (TE) Washington Redskins
";
arnews[1] += "Cooley will be in boot for 10 more days - Chris Cooley (TE) Washington Redskins -";
arnews[1] += "
";
arnews[2]="Fantasy Football: Williams will end up on injured reserve - Eddie Williams (RB) Washington Redskins
";
arnews[2] += "Williams will end up on injured reserve - Eddie Williams (RB) Washington Redskins -";
arnews[2] += "
";
arnews[3]="Fantasy Football: Haynesworth not sure of status - Albert Haynesworth (DL) Washington Redskins
";
arnews[3] += "Haynesworth not sure of status - Albert Haynesworth (DL) Washington Redskins -";
arnews[3] += "
";
arnews[4]="Redskins' RB Betts, G Rinehart out for the season (AP)
";
arnews[4] += "Redskins' RB Betts, G Rinehart out for the season (AP) -";
arnews[4] += "
";
totcount = 5;
if (rnd) {
for (x=0;x<=100;x++) {
y=Math.round(Math.random()*totcount-0.5);
z=x%totcount;
tval=arnews[y];
arnews[y] = arnews[z];
arnews[z] = tval;
}
}
for (x=0;x<=(totcount-1);x++) {
document.write(arnews[x]);
if (x != (totcount-1) ) document.write("
"); }
document.write("