// JavaScript Document
function popup (website){
window.open('../javascript/popup.asp?link='+website,'mywindow','scrollbars=yes,status=no,resizable=yes,width=659,height=450,left='+(screen.width - 700) / 2+',top='+(screen.height - 500) / 2);
}

function popup_centrata_scroll (website,l,a,x,y){
window.open(website,'mywindow','scrollbars=yes,status=no,resizable=no,width='+l+',height='+a+',left='+(screen.width - l) / 2+',top='+(screen.height - a) / 2);
}

function mostra(o) { 
if (document.all) 
		document.all[o].style.display = 'inline'; 
else if (document.getElementById) 
		document.getElementById(o).style.display = 'inline';
} 

function nascondi(o) {
if (document.all)
	document.all[o].style.display = 'none';
else if (document.getElementById) 
	document.getElementById(o).style.display = 'none'; 
}