var yearrow = 7;

function Years(name, from, to, except)
{
	document.write('<table CELLPADDING="0" BORDER=0><tr>');
	for (i=from; i<=to; i++)
	{
		if (i!=except)
			document.write('<td width="20" align="center"><a href="'+name+i+'.html">'+i+'</a>&nbsp;&nbsp;</td>');
		else
			document.write('<td width="20" align="center">'+i+'&nbsp;&nbsp;</td>');
		if (((i-from)%yearrow)==(yearrow-1)) 
		{
			document.write('</tr><tr>');
			if ((to-i)<yearrow) document.write('<td colspan="'+(yearrow-to+i)+'"></td>');
		}
	}
	document.write('</tr></table>');
}

function Years_index(name, from, to, except)
{
	document.write('<table CELLPADDING="0" BORDER=0><tr>');
	for (i=from; i<=to; i++)
	{
		if (i!=except)
			document.write('<td width="20" align="center"><a href="'+name+i+'/index.html">'+i+'</a>&nbsp;&nbsp;</td>');
		else
			document.write('<td width="20" align="center">'+i+'&nbsp;&nbsp;</td>');
		if (((i-from)%yearrow)==(yearrow-1)) 
		{
			document.write('</tr><tr>');
			if ((to-i)<yearrow) document.write('<td colspan="'+(yearrow-to+i)+'"></td>');
		}
	}
	document.write('</tr></table>');
}