function showSinceFromYear(objid)
{
	var today=new Date();
	var sincefrom = "2001";
	var sinceto = today.getFullYear();
	var strDisplay = sincefrom + "-" + sinceto;

	var el = document.getElementById(objid);
	if (el) el.innerHTML= strDisplay;
}

function init()
{
	var url = new String(window.location);
	var filename = url.substr(url.lastIndexOf("/") + 1);
	if(!filename)
		filename = "index.htm";
	if(filename.indexOf("support_") >= 0)
		filename = "support.htm";
	document.all.item("top_" + filename).style.color="yellow";
	document.all.item("left_" + filename).style.color="red";
	document.all.item("leftimg_" + filename).src = "images/leftarrow.gif";
}