
function MuestraSeccion(vinculo){
	document.write('<style>');
	/*TABLA DEL CAMINO DE HORMIGAS*/
	document.write('table.camino { width: 100%; border-width:0px; border-collapse:collapse}');
	/*texto sin enlace*/
	document.write('td.camino_texto {font-family:Verdana, Arial, Helvetica, sans-serif;font-size: 60%;color: #333333; padding-bottom: 10px;} ');
	/*enlaces*/
	document.write('a.camino_enlace:link,a.camino_enlace:visited,a.camino_enlace:active {text-decoration: none;color: #333333;}');
	document.write('a.camino_enlace:hover {text-decoration: underline; color: #333333;}');
	document.write('</style>');
	document.write('<table class="camino" summary="TABLA DEL CAMNIO DE HORMIGAS O NAVEGACION HORIZONTAL">');
	document.write('	<tr>');
	document.write('	<td class="camino_texto">' + vinculo + '</td>');
	document.write('	</tr>');
	document.write('</table>');
}

function MuestraTitulo(seccion){
	document.write('<style>');
	/*TABLA DEL CAMINO DE HORMIGAS*/
	document.write('table.camino { width: 100%; border-width:0px; border-collapse:collapse}');
	/*texto sin enlace*/
	document.write('td.camino_texto {font-family:Verdana, Arial, Helvetica, sans-serif;font-size: 60%;color: #333333; padding-bottom: 10px;}');
	/*enlaces*/
	document.write('a.camino_enlace:link,a.camino_enlace:visited,a.camino_enlace:active {text-decoration: none;color: #333333;}');
	document.write('a.camino_enlace:hover {text-decoration: underline; color: #333333;}');
	document.write('</style>');
	document.write('<table class="camino" summary="TABLA DEL CAMNIO DE HORMIGAS O NAVEGACION HORIZONTAL">');
	document.write('	</tr>');
	document.write('	<tr bgcolor="#FFEB99">');
	document.write('		<td class="titulo"><b>&nbsp; ' + seccion + '</b></td>');
	document.write('	</tr>');
	document.write('</table>');
}
