// JavaScript Document

function Mostra(Opcao){
	for(i=1; i<=6;i++){
		textoLink = "Quadro" + i;

		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraVestibular(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraTransferencia(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro1" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraPortadordodiploma(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraProuni(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraLaboratorio(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraMEC(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraComochegar(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function MostraEnade(Opcao){
	for(i=1; i<=2;i++){
		textoLink = "Quadro" + i;
		if (textoLink == Opcao){
				document.getElementById(Opcao).style.display = 'block';
		}else{
			document.getElementById(textoLink).style.display = 'none';
		}
	}
}

function Desaparece(Opcao){
	document.getElementById(Opcao).style.display = 'none';
}

function FecharJanela(){
	window.close();
}


