var rArr = new Array();
rArr[0] = ["Tony Dorsett, Dal vs. Min  99yds, 1/3/83", "Longest rush from scrimmage."];
rArr[1] = ["Robert Bailey, Rams vs NO  103yds, 10/23/94", "Longest punt return"];
rArr[2] = ["Jack Tatum, 104yds, Oak vs GB 9/24/72", "Longest fumble return"];
rArr[3] = ["Jerry Rice, 241, SF/Oak", "Consecutive games with a reception"];
rArr[4] = ["George Blanda, 26yrs.", "Most seasons played pro football"];
rArr[5] = ["Emmitt Smith, Dal/Az", "Most combined attempts(rush/receiving/returns)"];
rArr[6] = ["Gale Sayers, 30.6yds", "Highest Kickoff return average"];
rArr[7] = ["Warren Moon, 161", "Most fumbles in career"];
rArr[8] = ["Emmitt Smith, 11", "Most seasons 1000 yards or more rushing"];
rArr[9] = ["Ty Cobb, .366", "Highest career batting average"];
rArr[10] = ["Tris Speaker, 792", "Most doubles in a career"];
rArr[11] = ["Barry Bonds, 2302", "Most walks in a career"];
rArr[12] = ["Reggie Jackson", "Most strikeouts in career"];
rArr[13] = ["Cal Ripken Jr., 2632", "Most consecutive games in MLB"];
rArr[14] = ["Nolan Ryan, 27yrs", "Most years played in MLB/pro baseball"];
rArr[15] = ["Satchel Paige, 59yr 2months 18days",  "Oldest player in MLB"];
rArr[16] = ["Ichiro Suzuki, 262", "Most hits in a season"];
rArr[17] = ["Lou Gehrig, 23", "Most grand slam home runs in career"];
rUsed = new Array();

function recordsR(){
	x=gUR();
	document.open();
 	document.write(rArr[x][1]+" - "+rArr[x][0]);
	document.close();
}

function gUR(){
	z=false;x=0;
	for(var i=0;i<1;){x=Math.floor(Math.random()*(rArr.length));if(checkIt(x)) i = 1;}
	qUsed[qUsed.length] = x;return x;
}

function checkIt(val){
	for(i=0;i<qUsed.length;i++){if(qUsed[i]==val){return false;}}
	return true;
}
