// JavaScript Document
<!--
function show_dic(frase,significado){
	var capa = document.all('dic').style;
    capa.visibility = 'visible';
    var newSpan = document.createElement("span");
    newSpan.id="dicfrase";
    var newText = document.createTextNode(frase);
    newSpan.appendChild(newText);
    var para = document.getElementById("dcfrase");
    var spanElm = document.getElementById("dicfrase");
    var replaced = para.replaceChild(newSpan,spanElm);
   var newSpan = document.createElement("span");
    newSpan.id="dicsignificado";
    var newText = document.createTextNode(significado);
    newSpan.appendChild(newText);
    var spanElm = document.getElementById("dicsignificado");
    var replaced = para.replaceChild(newSpan,spanElm);
}

function hide_dic(){
	var capa = document.all('dic').style;
    capa.visibility = 'hidden';
}
function altura(){
    var a1 = document.getElementById("textos");
    var a2 = document.getElementById("imagenes");
	a2.height=a1.clientHeight;
}

-->
