function updateCssLastMenuThumb(className){
	var hasClassName = new RegExp("(?:^|\\s)" + className + "(?:$|\\s)");
	var allElements = document.getElementsByTagName("*");
	var results = [];
	
	var element;
	for (var i = 0; (element = allElements[i]) != null; i++) {
		var elementClass = element.className;
		if (elementClass && elementClass.indexOf(className) != -1 && hasClassName.test(elementClass))
			results.push(element);
	}
	results[0].className = "menu_thumb_first";
	results[results.length - 1].className = "menu_thumb_last";
}

function openNoteLegali(url, name, width, height, scrollbars){
	vLeft = (screen.width - width) / 2;
	vTop = (screen.height - height) / 2;
	finestra = window.open(url, name, 'width=' + width + ',height=' + height + ',left=' + vLeft + ',top=' + vTop + ',status=1,scrollbars=' + scrollbars);
	finestra.focus();
}

function printPageContent(oggetto){
	contenutoHtml = document.getElementById(oggetto).innerHTML;
	printWindow = window.open("", "stampa", "width=600,height=400,fullscreen=no,toolbar=no,status=no,menubar=yes,scrollbars=yes,resizable=no,directories=no,location=no,top=0,left=0, toolbars=no");
	printWindow.document.title=document.title;
	printWindow.document.write("<html><head>");
	printWindow.document.write("</head><body>");
	printWindow.document.write(contenutoHtml);
	printWindow.document.write("</body></html>");
	printWindow.document.close();
	printWindow.focus();
	printWindow.print();
}

function searchSiteSubmit(){
	var thisForm = document.site_search;
	if(thisForm.search_control.value!="") return false;
	else{
		if(thisForm.search_key.value !=''){
			return false;
			thisForm.action = document.location.href;
			thisForm.submit();
		}
	}
}
