// 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 verificaData() {
		if (document.forms['FormRegistrazione'].elements['data_nascita[d]'].value!='' && document.forms['FormRegistrazione'].elements['data_nascita[m]'].value!='' && document.forms['FormRegistrazione'].elements['data_nascita[Y]'].value!='') return true; else return false;
	}


function view_hide_textarea(nomeForm, nome_div, nome_campo,act) {
	
	if (act == 'view') {
		document.forms[nomeForm].elements[nome_campo].style.display='block';
		document.getElementById(nome_div).innerHTML='<a style="float:right; color:#8B8B8B" href="javascript:void(0);" title="'+label_nascondi+'" onclick="view_hide_textarea(\''+nomeForm+'\', \''+nome_div+'\', \''+nome_campo+'\',\'hide\'); return false;">'+label_nascondi+'</a><div class="clearBoth"></div>';
	}
	
	if (act == 'hide') {
		document.forms[nomeForm].elements[nome_campo].style.display='none';
		document.getElementById(nome_div).innerHTML='<a style="float:right; color:#8B8B8B" href="javascript:void(0);" title="'+label_visualizza+'" onclick="view_hide_textarea(\''+nomeForm+'\', \''+nome_div+'\', \''+nome_campo+'\',\'view\'); return false;">'+label_visualizza+'</a><div class="clearBoth"></div>';
	}
	
} // end func view_hide_textarea

function view_hide_text(nomeForm, nome_div, nome_campo,act) {
	
	if (act == 'view') {
		document.forms[nomeForm].elements[nome_campo].style.display='block';
		document.getElementById(nome_div).innerHTML='<a style="float:right; color:#8B8B8B" href="javascript:void(0);" title="'+label_nascondi_tit+'" onclick="view_hide_text(\''+nomeForm+'\', \''+nome_div+'\', \''+nome_campo+'\',\'hide\'); return false;">'+label_nascondi_tit+'</a><div class="clearBoth"></div>';
	}
	
	if (act == 'hide') {
		document.forms[nomeForm].elements[nome_campo].style.display='none';
		document.getElementById(nome_div).innerHTML='<a style="float:right; color:#8B8B8B" href="javascript:void(0);" title="'+label_visualizza_tit+'" onclick="view_hide_text(\''+nomeForm+'\', \''+nome_div+'\', \''+nome_campo+'\',\'view\'); return false;">'+label_visualizza_tit+'</a><div class="clearBoth"></div>';
	}
	
} // end func view_hide_textarea

function visualizza_mese_evento(idDiv) {
	
		if (document.getElementById(idDiv).style.display=='none') 	document.getElementById(idDiv).style.display='block';
		else document.getElementById(idDiv).style.display = 'none';

		
} // end func visualizza_contattaci
