function enviar_icsupdate()  {
	if(form_icsupdate.email.value=="")  {
		form_icsupdate.email.focus();
		document.getElementById("mensagem_erro_icsupdate").innerHTML="&nbsp;&nbsp;&nbsp;&nbsp;Preencha seu e-mail!";
	}
	else  {
		document.getElementById("mensagem_carregando_icsupdate").innerHTML="carregando...";
		try{
			xmlhttp = new XMLHttpRequest();
		}catch(ee){
			try{
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			}catch(e){
				try{
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				}catch(E){
					xmlhttp = false;
				}
			}
		}
		xmlhttp.open("GET","componentes/cadastro.cfc?method=CadastroIcsUpdate&Email=" + form_icsupdate.email.value,true);
		xmlhttp.onreadystatechange=function()  {
			if (xmlhttp.readyState==4)  {
				resultado = wddxGetElement(xmlhttp.responseText,'string');
				if(resultado=='ok')  {
					document.getElementById("tabela_icsupdate").innerHTML="<br>Informações enviadas com sucesso!<BR>Obrigado por participar do ICS UPDATE.";
					document.getElementById("mensagem_erro_icsupdate").style.display='none';
				}
				else
					document.getElementById("mensagem_erro_icsupdate").innerHTML="O formulário não foi enviado por problemas técnicos. Entre em contato com o suporte.";
				document.getElementById("mensagem_carregando_icsupdate").innerHTML="";
			}
		}
		xmlhttp.send(null);
	}
}