// JavaScript Document
function scurisci(ob){
	var id = ob.id;
	if(document.all){
		document.getElementById(id).style.filter = "alpha(opacity=100)";
	}else{
		document.getElementById(id).style.opacity = "1.0";
	}
}

function schiarisci(ob){
	var id = ob.id;
	if(document.all){
		document.getElementById(id).style.filter = "alpha(opacity=00)";
	}else{
		document.getElementById(id).style.opacity = "0.0";
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

