<!-- Begin

// JavaScript Document
// JWRC right column

var myLabels = [
	'Junior 2004',
	'Final classification ',
	'of Neste Rally Finland'
	];

document.write("<P>")	
for(i=0;i<myLabels.length;i++)
{
	document.writeln(myLabels[i] + '<BR>');
}
document.write("<BR>");

// End -->