<!--
//PREGUNTA
window.onload = ponFoco;
window.document.onkeyup = cuentaPregunta;

function cuentaPregunta()
{
    document.LM.Contar.value = document.LM.Pregunta.value.length;
    return true;
}

function ponFoco()
{ 
    cuentaPregunta(); 
}
//-->