function MostrarInformacion(id) 
{
    for (i = 1; i <= 4; i++) 
    {
        var div = document.getElementById("div" + i);
        var link = document.getElementById("link" + i);

        div.style.display = "none";
        link.className = "";

        if (i == id) 
        {
            div.style.display = "";
            link.className = "on";
        }
    }
}

function contar(control)
{
    if (control.value.length > 998)
        {
            alert("El comentario no puede superar los 1000 caracteres");
        }
 }