/*******************************************************************************
	Funzione per abilitare/disabilitare il button di un form cliccando 
	una check box
	
	<input type="checkbox" id="cprivacy" onclick="ok_privacy('cprivacy','idButton');" /> 
*******************************************************************************/
function ok_privacy(idCheck, idButton, lang, domain)
{
	if (document.getElementById(idCheck).checked == true)
	{
		document.getElementById(idButton).disabled = false;
		document.getElementById(idButton).className = "button";
		document.getElementById(idButton).style.background = "transparent url("+domain+"img/"+lang+"/but-send.gif) no-repeat top center";
	}
	else
	{
		document.getElementById(idButton).disabled = true;
		document.getElementById(idButton).className = "button_disabled";
		document.getElementById(idButton).style.background = "#999999 none no-repeat";
	}

}