//------------------------------------------------
// This code is Copyrighted (c) 2003 Ian Pimm.
// It may not be used without proper permission.
// Please contact the author about it if you
// really want to use it that badly.  Thanks.
//
//------------------------------------------------

rndimg1=parseInt(Math.random()*4)
rndimg2=parseInt(Math.random()*4)
imgnames=new Array()
imgnames[0]="Ice&nbsp;Fox"
imgnames[1]="Rune&nbsp;Sword"
imgnames[2]="Kyla&nbsp;Dark"
imgnames[3]="Wolf&nbsp;SpellBlade"

function headIconL()
{
	document.write("<img src=topiconl"+rndimg1+".gif width=80 height=100 alt="+imgnames[rndimg1]+">")
}
function headIconR()
{
	while (rndimg2==rndimg1) {
		rndimg2=parseInt(Math.random()*4)
	}
	document.write("<img src=topiconr"+rndimg2+".gif width=80 height=100 	alt="+imgnames[rndimg2]+">")
}