function addRace(x,y){
	var length=1;
    document.write('<MARQUEE scrollAmount=3 scrollDelay=120 direction=left width=550 height=20 >');	
	document.write('<table width="'+y+'" border="0" cellspacing="0" cellpadding="0">');
	document.write('<tr>');
	for (i=0;i<length;i++){
	document.write('<td width="'+y+'">');
	document.write(x);
	document.write('</td>');}
	document.write('</tr>');
	document.write('</table>');
	document.write('</MARQUEE>');
}
