function gerarSWF($arquivo){
	document.writeln('<object type="application/x-shockwave-flash" data="index.swf" width="100%" height="100%">');
	document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
    document.writeln('<param name="movie" value="index.swf" />');
	document.writeln('<param name="loop" value="false" />');
	document.writeln('<param name="menu" value="false" />');
    document.writeln('<param name="quality" value="best" />');
	document.writeln('<param name="scale" value="noscale" />');
	document.writeln('<param name="allowFullScreen" value="true" />');
	document.writeln('<param name="salign" value="lt" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<embed quality="best" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" ></embed>');
    document.writeln('</object>');
}

function campos(valor){
	if(valor == "juridica"){
		document.getElementById("juridica").style.display = "block";
		document.getElementById("juridica").style.marginLeft = "30px";
		document.getElementById("fisica").style.display = "none";
	}else{
		document.getElementById("juridica").style.display = "none";
		document.getElementById("juridica").style.marginLeft = "30px";
		document.getElementById("fisica").style.display = "block";	
	}		
}
function pagina(valor){
	document.getElementById("infraestrutura").style.display = "none";
	document.getElementById("dados_pessoais").style.display = "none";
	document.getElementById("representados").style.display = "none";
	document.getElementById("abrangencia").style.display = "none";
	document.getElementById(valor).style.display = "block";
}
