

function printYearList(yy, maxyy){
document.write('<div class=boxLinks_press>');
document.write('<div class="boxLinks">');
document.write('    <span id="YearList">');
document.write('<span><a class="arrow" href="PressRelease.html">'+maxyy+'</a></span>');
for (var i = maxyy - 1; i >= 2003; i-- )
{
	if (i == yy)
	{
		document.write('<span class="arrow"><b>'+yy+'</b></span>');
	}else{
		document.write('<span><a class="arrow" href="PressRelease_'+i+'.html">'+i+'</a></span>');
	}
}
document.write('	</span>');
document.write('</div>');
document.write('</div>');
document.write('<p></p><p></p>');
document.write('<p class=year>');
document.write(yy);
document.write('</p>');
}

