    clientSideInclude('commentAuthenticator', '/CommentAuthenticatorServlet');

    var author = getCookie("commentAuthor");
    var email = getCookie("commentEmail");
    var url = getCookie("commentUrl");
    // check each field - IE will render "null"
    if (author) {
        document.forms['commentForm'].name.value = author;
    }
    if (email) {
        document.forms['commentForm'].email.value = email;
    }
    if (url) {
        document.forms['commentForm'].url.value = url;
    }

    if (author || email || url) {
        document.forms['commentForm'].rememberInfo.checked = true;
    }

    function fixURL(theForm) {
     var laFormulaciondelFormulario = document.forms['commentForm'];
     if (laFormulaciondelFormulario.name.value == "Nombre:") {
      theForm.name.value = "";
     }
     if (laFormulaciondelFormulario.email.value == "eMail:") {
      theForm.email.value = "";
     }
     if (laFormulaciondelFormulario.content.value == "Comentario: (HTML habilitado)") {
      theForm.content.value = "";
     }
     if (laFormulaciondelFormulario.url.value != "") {
      if (laFormulaciondelFormulario.url.value == "Página Web:") {
       theForm.url.value = "";
      }
      else if (laFormulaciondelFormulario.url.value.indexOf("http://") == -1) { 
       theForm.url.value = "http://" + theForm.url.value;
      }
     }
     
    }

    function saveUserInformation(theForm) {
        if (theForm.rememberInfo.checked) {
            rememberUser(theForm)
        } else {
            forgetUser(theForm);
        }
    }

    function validateComments(theForm) {

    }
//        if (theForm.content.value == "") {
//            alert("Please enter a comment.");
//            theForm.content.focus();
//            return false;
//        }