function $(o){return document.getElementById(o);}

function exibeEsconte1(variavel){
	var exibe=new Array("pergunta1","pergunta2","pergunta3","pergunta4","pergunta5","pergunta6","pergunta7","pergunta8","pergunta9","pergunta10","pergunta11","pergunta12","pergunta13","pergunta14","pergunta15","pergunta16","pergunta17","pergunta18","pergunta19","pergunta20","pergunta21","pergunta22","pergunta23","pergunta24","pergunta25","pergunta26","pergunta27","pergunta28","pergunta29","pergunta30","pergunta31","pergunta32","pergunta33","pergunta34","pergunta35","pergunta36","pergunta37","pergunta38","pergunta39","pergunta40","pergunta41","pergunta42","pergunta43","pergunta44","pergunta45","pergunta46","pergunta47","pergunta48","pergunta49","pergunta50","pergunta51","pergunta52","pergunta53","pergunta54","pergunta55","pergunta56");
	for(var i=0; i<exibe.length; i++){
		if(variavel == exibe[i]){
			if ($(exibe[i]).style.display != "block"){
				$(exibe[i]).style.display = "block";
				$(exibe[i]).style.right = "15px";
				$(exibe[i]).style.position = "absolute";
				$(exibe[i]).style.width = "535px";
				$(exibe[i]).style.top = "25px";				
				$('id'+exibe[i]).className = "ativo";
			}else{
				$(exibe[i]).style.display = "none";
				$('id'+exibe[i]).className = "inativo";
			}
		}else{
			$(exibe[i]).style.display = "none";
			$('id'+exibe[i]).className = "inativo";
		}
	}
	window.scroll(0,0);
}

function mostra(div){
	$('install').style.display='none';
	$('config').style.display='none';	
	$(div).style.display='block';
}

function enviardados(){
	var d = document;
	var nome = d.form.nome.value;
	var email = d.form.email.value;
	var msg = "Por favor, preencha o campo";
	if(nome == "") {
        msg += " Nome\n";
        alert(msg);
        d.form.nome.focus();
        return false;
    }
	if(email == ""){
        msg += " E-mail\n";
        alert(msg);
        d.form.email.focus();
        return false;
    }
	return true;
}