function writeYear(myYear)
{	
	var anno = myYear + "";
	var lastyear = 2003;	//change only this value!
	var firstyear = 2000;
	var classe;
	if(document.location.href.indexOf("/releases")!= -1 || document.location.href.indexOf("/pressr")!= -1)
		var tipo ="RELEASES";
	else
		var tipo ="CUTTINGS";
	document.write("<td class=\"graybold11\" height=\"20\" valign=\"bottom\" width=\"60%\">PRESS " + tipo + " " + anno + "</td>");
	for (var i = lastyear; i >= firstyear; i--)
	{
		var aa = (i + "").substring(2, (i + "").length);
		var aaaa = i + "";
		var aacurrent = anno.substring(2, anno.length);
		var baseuri = "";
		if(document.location.href.indexOf(anno + "/")!= -1 && document.location.href.indexOf("/press")!= -1)
			baseuri = "../";
		if(aaaa == anno)
			classe = "graybold";
		else
			classe = "menu";
		if(document.location.href.indexOf("/releases")!= -1 || document.location.href.indexOf("/pressr")!= -1)
			{
			var tipo2 ="releases_en_";
			var title ="releases";
			}
		else
			{
			var tipo2 ="cuttings_";
			var title ="cuttings";
			}
		document.write("<td align=\"right\" valign=\"bottom\" width=\"10%\"><a href=\"" + baseuri + "" + tipo2 + "" + aa + ".html\" title=\"press " + title + " "+ aaaa + "\" class=\"" + classe + "\">" + aaaa + "</a></td>");
	}
}