// JavaScript Document


function visualizza_form(id_part)
	{
				div_part = document.getElementById(id_part);
				div_part_style = div_part.style.display;
				(div_part_style == "none") ? div_part.style.display = "block" : div_part.style.display = "none";
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
			 window.open(theURL,winName,features);
	}

function conferma_privacy(privacy,nomeForm) {
		//myVar = info.privacy[1].checked;				
		//alert(privacy);


		if (privacy == false) { document.forms[nomeForm].accetta_privacy.value=''; return true; }
		else { document.forms[nomeForm].accetta_privacy.value=1; return true; }
		
}

function visualizza_scheda(idDiv) {
	
		if (document.getElementById(idDiv).style.display=='none') 	document.getElementById(idDiv).style.display='block';
		else document.getElementById(idDiv).style.display = 'none';

		
	
} // end func view_hide_textarea
