function fncDibujarEnlaceCapaFicha(strIdCapaMostrar,strIdCapaOcultar)
{
	document.writeln("<a href=\"javascript:fncMostrarRutaDia('" + strIdCapaMostrar + "','" + strIdCapaOcultar + "')\">");
		document.writeln("<img src=\"/contenidos/recurso_tecnico/s11_comun/es_s11/images/fle_v.gif\"/>");
	document.writeln("</a>");
	
}

function fncMostrarRutaDia(strIdCapaMostrar,strIdCapaOcultar)
{
	document.getElementById("s11_contenedorMostrarFichas").innerHTML = document.getElementById(strIdCapaMostrar).innerHTML;
	document.getElementById("s11_DatosGeneralesRuta").style.display = "none";	
}

function fncMostrarTexto(strTexto,strIdDiv)
{
	document.getElementById(strIdDiv).innerHTML = strTexto;
}

function fncLimpiarTexto(strIdDiv)
{
	document.getElementById(strIdDiv).innerHTML = "&nbsp;";
}