<!--

function setFocus()
{
    document.implogin.imapuser.focus();
}

function submit_login()
{
    if (document.implogin.imapuser.value == "") {
        alert('Introduce tu nombre de usuario y contraseņa.');
        document.implogin.imapuser.focus();
        return false;
    } else if (document.implogin.pass.value == "") {
        alert('Introduce tu nombre de usuario y contraseņa.');
        document.implogin.pass.focus();
        return false;
    } else {
        return true;
    }
}
//-->

<!--
function enter_key_trap(e)
{
    var keyPressed;

    if (document.layers) {
        keyPressed = String.fromCharCode(e.which);
    } else if (document.all) {
        keyPressed = String.fromCharCode(window.event.keyCode);
    } else if (document.getElementById) {
        keyPressed = String.fromCharCode(e.keyCode);
    }

    if ((keyPressed == "\r" || keyPressed == "\n") && (submit_login())) {
        document.implogin.submit();
    }
}


function updatePort()
{
}

function selectLang()
{
    var lang_page = '/horde/index.php?new_lang=' + document.implogin.new_lang[document.implogin.new_lang.selectedIndex].value + '&imapuser=' + document.implogin.imapuser.value;
    lang_page += '&url=http%3A%2F%2Fwebmail.tecnicos-agricolas.com%2Fhorde%2Flogin.php';
    top.location = lang_page;
}

//-->

<!--
// Setup the enter keytrap code
if (window.document.captureEvents != null) {
    window.document.captureEvents(Event.KEYPRESS);
    window.document.onkeypress = enter_key_trap;
}
//-->

<!-- This file contains any "Message Of The Day" Type information -->
<!-- It will be included below the log-in form on the login page. -->


<!--
if (parent.frames.horde_main) parent.document.title = 'Mail :: Welcome to Horde';
//-->


