

function acessa_mail(){
	
	//alert(document.getElementById("f_user").value);
	

		document.form1.f_user.value = document.getElementById('usuario').value;
		document.form1.f_pass.value = document.getElementById('senha').value;
		document.form1.submit();

}
function verifica_dominio_ajax(){
	valida=0;
	get_str = 'index_int.php?menu=menu_reg.html&conteudo=registrar_dominio.php&check=sim&dominio='+ document.getElementById('dominio').value;
	
	if(document.getElementById('combr').checked){
		get_str += '&combr=on';
		valida=1;
	}
	
	if(document.getElementById('com').checked){
		get_str += '&com=on';
		valida=1;
	}
	
	if(document.getElementById('orgbr').checked){
		get_str += '&orgbr=on';
		valida=1;
	}
	
	if(document.getElementById('srvbr').checked){
		get_str += '&srvbr=on';
		valida=1;
	}
	
	if(document.getElementById('org').checked){
		get_str += '&org=on';
		valida=1;
	}
	
	if(document.getElementById('net').checked){
		get_str += '&net=on';
		valida=1;
	}
	
	if(valida == 1 && !document.getElementById('dominio').value == ""){
		window.location=get_str;
	}else{
		alert("O domínio e sua extenção devem ser preenchidos!");
	}
}

