//-------------------------------------------------------------------------------------------------------------

function noBordersForChecks(){
	var allChecks = document.getElementsByTagName('input');
	var numChecks = allChecks.length;
	for(i=0; i<numChecks; i++){
		if(allChecks[i].type == "checkbox" || allChecks[i].type == "radio"){
			allChecks[i].style.borderWidth = '0px';
			allChecks[i].style.backgroundColor = 'transparent';
		}
	}
}

//-------------------------------------------------------------------------------------------------------------
// funzioni di ricerca
//-------------------------------------------------------------------------------------------------------------

function ricercaLibera()
        {
        var ricercaS = document.forms['ricerca'].elements['libera'].value;
        pp = '/motore-di-ricerca/ricerca-libera.asp?r=0&ricerca=' + ricercaS;
        window.document.forms['ricerca'].action = pp;
        window.document.forms['ricerca'].submit();
        }

// 

