
function cambiaImg(ico, pathImmagine) {
	     ico.src = pathImmagine;
}

function accendi(a) {
	a.style.color ="#FFb200";
}

function spengi(a) {
	a.style.color = "#509cb8";
}

function goUrl(url) {
	document.location.href=url;
}

function vai(url) {
	window.open(url,'Titolo','toolbars=no,top=100,left=200,width=400,height=300,scrollbars=yes');
}

function report(f, url, report, formula) {
	if(formula != ''){
	f.action = "../Report/ReportAsp/" + url + "?Report=" + report + "&Formula=" + formula;
	
	}
	else {
		f.action = "../Report/ReportAsp/" + url + "?Report=" + report;
	}
	f.target = "_new";
	f.submit();	
}