function popUp(URL,w,h,s,r)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars='+s+',location=0,statusbar=0,menubar=0,resizable='+r+',width='+w+',height='+h+',left = 100,top = 80');");
}

function vis(id)
{
	a=document.getElementById('top');
	b=a.getElementsByTagName('LI');
	for (i=0; i<b.length; i++) b[i].className="";
	sel=document.getElementById("tit_"+id);
	sel.className="selected";
	
	a=document.getElementById('toplist');
	b=a.getElementsByTagName('DIV');
	for (i=0; i<b.length; i++) b[i].style.display="none";
	sel=document.getElementById(id);
	sel.style.display="block";
}

function stampa() { this.print(); }