function XHConn(){	var xmlhttp, bComplete = false;	try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }	catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }	catch (e) { try { xmlhttp = new XMLHttpRequest(); }	catch (e) { xmlhttp = false; }}}	if (!xmlhttp) return null;	this.connect = function(sURL, sMethod, sVars, fnDone)	{		if (!xmlhttp) return false;		bComplete = false;		sMethod = sMethod.toUpperCase();		try {			if (sMethod == "GET")			{				xmlhttp.open(sMethod, sURL+"?"+sVars, true);				sVars = "";			}			else			{				xmlhttp.open(sMethod, sURL, true);				xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1");				xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");			}			xmlhttp.onreadystatechange = function(){				if (xmlhttp.readyState == 4 && !bComplete)				{					bComplete = true;					fnDone(xmlhttp);				}};				xmlhttp.send(sVars);		}		catch(z) { return false; }		return true;	};	return this;}var myConn = new XHConn();var urlSite = "http://www.contaspremium.com.br";var jaCarregando = "<input type='hidden' value='sim' id='carregando'>";if (!myConn) alert("Erro.");function verificarEmail(){	if(document.getElementById("carregando").value == "sim"){		alert("Por favor, aguarde a ação anterior acabar de carregar!");	} else {		if (document.getElementById("TXT_EMAIL_CADASTRAR").value != ""){			var inclusao = function (oXML) { document.getElementById("verificarEmail").innerHTML = oXML.responseText; };			var post = "TXT_EMAIL=" + document.getElementById("TXT_EMAIL_CADASTRAR").value;			document.getElementById("verificarEmail").innerHTML = "<center>Verificando e-mail...</center>";			myConn.connect(urlSite + "/includes/action/verificaremail.php", "POST", post, inclusao);	    }	}}function esqueceuSenha(){	var inclusao = function (oXML) { document.getElementById("carregandoTxt").innerHTML = oXML.responseText; };			var post = "TXT_EMAIL_ESQUECEU_SENHA=" + document.getElementById("TXT_EMAIL_ESQUECEU_SENHA").value;	document.getElementById("carregandoTxt").style.display = 'block';	document.getElementById("carregandoTxt").innerHTML = "Carregando...";	myConn.connect(urlSite + "/includes/action/reenviarsenha.php", "POST", post, inclusao);}function alterarSenha(){	var inclusao = function (oXML) { document.getElementById("carregandoTxt").innerHTML = oXML.responseText; };			var post = "TXT_SENHA_ESQUECEU_SENHA=" + document.getElementById("TXT_SENHA_ESQUECEU_SENHA").value +	"&TXT_EMAIL_ESQUECEU_SENHA=" + document.getElementById("TXT_EMAIL_ESQUECEU_SENHA").value +	"&TXT_COD_RESGATE_ESQUECEU_SENHA=" + document.getElementById("TXT_COD_RESGATE_ESQUECEU_SENHA").value;	document.getElementById("carregandoTxt").style.display = 'block';	document.getElementById("carregandoTxt").innerHTML = "Carregando...";	myConn.connect(urlSite + "/includes/action/alterarsenha.php", "POST", post, inclusao);}function preencheNick(id){	document.getElementById("nick").innerHTML = id.value;}