﻿
/* 
Agregar a favoritos
*/

function bookmark()
{
    var bookmarkurl = "http://www.zonabancos.com/";
    var bookmarktitle = "ZonaBancos.com - bancos";
    if (document.all) // IE
        window.external.AddFavorite(bookmarkurl, bookmarktitle);
    else if (window.sidebar) // firefox
        window.sidebar.addPanel(bookmarktitle, bookmarkurl, "");
}



function DoBlur(input) 
{
    input.className = 'normal';
}

function DoFocus(input) 
{
    input.className = 'focus';
}


function clearText(field)
{
    if (field.defaultValue == field.value) {
        field.value = "";
    }

}

function checkEnter(event) { 

    // Si presiona Enter abro fancybox

    var button;

    if (document.all) // Si es IE
    {
        tecla = event.keyCode;
        
        if (tecla == 13) 
        {
            button = document.getElementById("buttonSuscripcion");
            event.keyCode = 9; // 9 es tecla tab, evito submit
            button.click();
            return true;
        }
    }
    else // Firefox
    {
        tecla = event.which;

        if (tecla == 13) 
        {
            button = document.getElementById("buttonSuscripcion");
            button.click();
            return false; // evito submit
        }
    }


}


