// JavaScript Document
function showing(field) {
	for(n=1;n<=5;n++) document.getElementById("trField_"+n).className = 'esconder';
	document.getElementById("vencimento").className = 'esconder';
	document.getElementById("vcto").style.visibility = 'hidden';
	if(field == 1 || field == 2 || field == 3){
		document.getElementById("trField_"+field).className = 'mostrar';
		document.getElementById("vencimento").className = 'mostrar';
		document.getElementById("vcto").style.visibility = '';
	} else if (field == 4 || field == 5){
		document.getElementById("trField_"+field).className = 'mostrar';
	}
}
function showPF() {        
	for(n=1;n<=3;n++) document.getElementById("tipoPJ"+n).className = 'esconder';
	document.getElementById("empresa").style.visibility='hidden';
	document.getElementById("razao").style.visibility='hidden';
	document.getElementById("cnpj").style.visibility='hidden';
	document.getElementById("tipoPF").className = 'mostrar';
	document.getElementById("cpf").style.visibility = '';
}
function showPJ() {        
	document.getElementById("tipoPF").className = 'esconder';
	document.getElementById("cpf").style.visibility = 'hidden';
	for(n=1;n<=3;n++) document.getElementById("tipoPJ"+n).className = 'mostrar';
	document.getElementById("empresa").style.visibility = '';
	document.getElementById("razao").style.visibility = '';
	document.getElementById("cnpj").style.visibility = '';
}
function showDOM(field) {        
	for(n=1;n<=3;n++) {
	document.getElementById("trDOM_"+n).className = 'esconder';
	document.getElementById("dominio"+n).style.visibility = 'hidden';
	}
	if(field != ""){
	document.getElementById("trDOM_"+field).className = 'mostrar';
	document.getElementById("dominio"+field).style.visibility = '';
	}
}
function showDOM(field) {        
	for(n=1;n<=3;n++) {
	document.getElementById("trDOM_"+n).className = 'esconder';
	document.getElementById("dominio"+n).style.visibility = 'hidden';
	}
	if(field != ""){
	document.getElementById("trDOM_"+field).className = 'mostrar';
	document.getElementById("dominio"+field).style.visibility = '';
	}
}
function getUrlVars(){
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
	for(var i = 0; i < hashes.length; i++) {
	hash = hashes[i].split('=');
	hash[1] = unescape(hash[1]);
	vars.push(hash[0]);
	vars[hash[0]] = hash[1];
    }
    return vars;
}
function getDomain(){
	document.getElementById('quero').checked = true; 
	showDOM(1);
	document.getElementById('pagina').style.display='';
	ajax('registro_ajax.php?dominio='+document.form1.dominio1.value+'&ext='+document.form1.ext1.value);
}
function getPlano(){
	showing(document.form1.id_plano.value);
}
var pedaco = getUrlVars();
if(pedaco['dominio'] != "" && pedaco['ext']){
	window.onload= getDomain;
} else if(pedaco['plano'] != ""){
	window.onload= getPlano;
}