function cardprint()
{
var myrace=document.getElementById("myrace");
var racenumber=document.getElementById("myrace").selectedIndex;

		
		
if(racenumber==0) { horse = new Array();	horse[0]="My Will 9/1";	
	horse[1]="Butler's Cabin 9/1";	
	horse[2]="Rambling Minster 9/1";	
	horse[3]="Black Apalachi 14/1";	
	horse[4]="State Of Play 14/1";	
	horse[5]="Parsons Legacy 16/1";	
	horse[6]="Darkness 16/1";	
	horse[7]="Comply Or Die 18/1";	
	horse[8]="Hear The Echo 20/1";	
	horse[9]="Offshore Account 20/1";	
	horse[10]="Kilbeggan Blade 20/1";	
	horse[11]="Big Fella Thanks 22/1";	
	horse[12]="L'Ami 22/1";	
	horse[13]="Irish Invader 22/1";	
	horse[14]="Snowy Morning 28/1";	
	horse[15]="Southern Vic 28/1";	
	horse[16]="Cornish Sett 33/1";	
	horse[17]="Brooklyn Brownie 33/1";	
	horse[18]="Himalayan Trail 33/1";	
	horse[19]="Battlecry 40/1";	
	horse[20]="Can'T Buy Time 40/1";	
	horse[21]="Cloudy Lane 50/1";	
	horse[22]="Silver Birch 50/1";	
	horse[23]="Idle Talk 50/1";	
	horse[24]="Chelsea Harbour 66/1";	
	horse[25]="Knowhere 66/1";	
	horse[26]="Golden Flight 66/1";	
	horse[27]="Ollie Magern 80/1";	
	horse[28]="Mon Mome 80/1";	
	horse[29]="Stan 100/1";	
	horse[30]="Preists Leap 100/1";	
	horse[31]="Eurotrek 100/1";	
	horse[32]="Reveillez 125/1";	
	horse[33]="Zabenz 125/1";	
	horse[34]="Fleet Street 150/1";	
	horse[35]="Musica Bella 150/1";	
	horse[36]="Fundamentalist 200/1";	
	horse[37]="Kelami 200/1";	
	horse[38]="Arteea 300/1";	
	horse[39]="Cerium 500/1";	
		card()};


function card()
{
	writeConsole(horse);
function writeConsole(content) 
{
 top.consoleRef=window.open('','myconsole',
  'width=350,height=250'
   +',menubar=0'
   +',toolbar=1'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1')
 top.consoleRef.document.writeln(
  '<html><head><title>Race Card</title></head>'
   +'<body bgcolor=white onLoad="self.focus()">'
   +content
   +'</body></html>'
 )
 top.consoleRef.document.close()
}}}