function light(cell,lnk) {
	cell.style.backgroundColor='#000040';
/*	document.getElementById(lnk).style.fontStyle='italic';*/
document.getElementById(lnk).style.color='#44aa44';
}

function unlight(cell,lnk) {
	cell.style.backgroundColor='#000000';
/*	document.getElementById(lnk).style.fontStyle='normal';*/
document.getElementById(lnk).style.color='#44aaaa';
}

function runflash(flashSrc,width,height,name,color,align) {
	document.write('<center><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width=' + width + ' height=' + height + ' id=' + name + ' align=' + align + '>');
	document.write('<param name=movie value=' + flashSrc + '><param name=quality value=High> <param name=bgcolor value=' + color + '>');
	document.write('<embed src=' + flashSrc + ' quality=high bgcolor=' + color + ' width=' + width + ' height=' + height + ' name=' + name + ' align=' + align + ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object></center><br />');
}

function newSrc(img, imgFile) {
	img.src=imgFile;	
}
