var selectedLink = 0;

function hideAll(numero_de_caixas_pag) {
	caixas = numero_de_caixas_pag;
	for(run=1;run<=caixas;run++) {
		hide('caixa_'+run);
	}
}
hideAll();

function show(qual) {
	window.document.getElementById(qual).style.display = 'block';
}

function hide(qual) {
	window.document.getElementById(qual).style.display = 'none';
}

function selectLink(lnk) {
  if (selectedLink != 0) selectedLink.style.fontWeight='normal';
  lnk.style.fontWeight='bold';
  selectedLink=lnk;
}

function showCam(Local, LocSRC) {
	window.document.getElementById("WebCamTitulo").innerHTML = Local;
	window.document.getElementById("imgone").src = LocSRC;
}
