﻿

function handleEnter(field, event) {
    var keyCode = document.all ? event.keyCode : event.which; 
    if (keyCode == 13) {
        if ((document.getElementById(field).type == "button") || (document.getElementById(field).type == "submit") || document.getElementById(field).tagName == 'A') {
            document.getElementById(field).click();
        }
        else {
            document.getElementById(field).focus();
        } 
        return false; 
    } 
    else { 
        return true;
    }
}
function OpenFormListing(){
    window.open('FormListing.aspx','','height=700,width=550,scrollbars=yes,left=50,top=50,menubar=no,location=no,resizable=no,toolbar=no');
}
function OpenSendMail(GaleriaID){
    window.open('SendMail.aspx?gid='+GaleriaID,'','height=600,width=550,scrollbars=no,left=50,top=50,menubar=no,location=no,resizable=no,toolbar=no,status=yes');
}




function ShowProcessing() {
    var api = $("#processing").overlay();

    api.load();

}


$(document).ready(function () {
    $("#processing").overlay({
        top: 100,


        expose: {
            color: '#000',
            loadSpeed: 200,
            opacity: 0.2
        },

        closeOnClick: true, // Esto lo hace modal. Si lo ponés en true se cierra al hacer click fuera del cuadro.

        api: true

    });

});


