// JavaScript Document
	try{
	xmlhttp = new XMLHttpRequest();}catch(ee){try{
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{
	xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
	catch(E){xmlhttp = false;}}}

function ajaxContatoOutros() {
		xmlhttp.open("POST", "contato_outros.asp?tipo="+document.contato.como.value ,true);
		xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8');
		xmlhttp.onreadystatechange=function() { 
					document.getElementById('divQual').innerHTML = '<img src="img/loading1.gif" width="16" height="16" /><font size="1" face="tahoma">Aguarde Carregando...</font>'
		   if(xmlhttp.readyState == 4){
					document.getElementById('divQual').innerHTML = xmlhttp.responseText
				}}
			xmlhttp.send('') 
}

function ajaxAbrePopTime(PerfilJogador) {
		xmlhttp.open("POST", PerfilJogador ,true);
		xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8');
		xmlhttp.onreadystatechange=function() { 
		document.getElementById('showdiv').innerHTML = '<img src="img/loading_arrows.gif" width="16" height="16" /><font size="1" face="Arial">Carregando...</font>'
		if(xmlhttp.readyState == 4){
		document.getElementById('showdiv').innerHTML = xmlhttp.responseText
		}}
		xmlhttp.send('') 
}

function ajaxClose() {
		xmlhttp.open("POST", "closeDisplay.asp" ,true);
		xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded; charset=utf-8');
		xmlhttp.onreadystatechange=function() { 
					document.getElementById('showdiv').innerHTML = ''
		   if(xmlhttp.readyState == 4){
					document.getElementById('showdiv').innerHTML = xmlhttp.responseText
				}}
			xmlhttp.send('') 
}
