function abrirPagSuporteEnvia(nome2, endereco2, cidade2, estado2, telefone2, email2, observacao2)
{
 	var url2 = 'suporteEnvia.asp?nome='+ nome2 +'&endereco='+ endereco2 +'&cidade='+ cidade2 +'&estado='+ estado2 +'&telefone='+ telefone2 +'&email='+ email2 +'&observacao='+ observacao2;
	
	/*
	alert(nome2);
	alert(endereco2);
	alert(cidade2);
	alert(estado2);
	alert(telefone2);
	alert(email2);
	alert(observacao2);
	*/

	var xmlhttp2 = null;

		try
		{
			xmlhttp2= new XMLHttpRequest(); // FF/Safari/Opera
		}	
		catch(e1)
		{
			try
			{
				xmlhttp2 = new ActiveXObject("Msxml2.XMLHTTP"); //activeX para IE5.5+/MSXML2+
			}
			catch(e2)
			{
				try
				{
					xmlhttp2 = new ActiveXObject("Microsoft.XMLHTTP"); //activeX para IE5/MSXML1
				}
				catch(e3)
				{
					xmlhttp2 = null;
				}
			}
		}
		
		if(xmlhttp2 == null)
		{
			alert("Seu navegador não dá suporte a AJAX.");
			return (false)
		}
		else
		{
			xmlhttp2.onreadystatechange=function()
			{
				if (xmlhttp2.readyState==4)
				{
					var texto2 = unescape(xmlhttp2.responseText);
					document.getElementById("titPagina").innerHTML= "Ok - Confirmação de Envio";
					document.getElementById("conteudo_mostrar").innerHTML= "<div align=center><br><br><br><br>Informações enviadas com sucesso.<br><br>Entraremos em contato em breve.<br><br><br>Att. Suporte Point Site<br><br><br><br></div>";
					
				}
			}

		 	//document.getElementById("conteudo_mostrar").innerHTML = "<br><br><br><br><br><img src='imgConteudo/ajax-loader.gif'> Aguarde, carregando...";
			xmlhttp2.open("GET",url2,true);
			xmlhttp2.send(null);	
		}

	return (true);

}


