// 
// footer.js file: contains a standard footer 
// for all of my games
// copyright 2001 Michael Leikam leikam@yahoo.com
//

copy = 'Copyright &copy; 2002 <a href="/cgi-bin/email.py?to=m">Michael Leikam</a>'
lead = '<center><small>'+copy+'<br><a href="http://www.leikam.com/games/">more of my games</a></small></center>'
document.write(lead)
/*
lead = '<center><small>'+copy+'<br>more of my games: [ '
sep = ' | '
end = ' ]</small></center>'

feet = new Array()
feet = [
'<a href="http://www.leikam.com/trader/">Commodity Trader</a>',
'<a href="http://leikam.tripod.com/bj/index.html">Blackjack</a>',
'<a href="http://www.leikam.com/games/flipper/index.html">Flipper</a>',
'<a href="http://www.leikam.com/games/bombs/index.html">Bombs/Minesweeper</a>'
]

z = feet.length; z1 = 0
document.write(lead)
while(z1<z-1){
	document.write(feet[z1])
	document.write(sep)
	z1 += 1
}
document.write(feet[z-1])
document.write(end)
*/
