/**
 * Abre una ventana con el href y el target pasados por parámetro.
 */
function abrirVentana(href, target) {
    var x, y, w, h;

    w = 800;
    h = 500;
    x = parseInt(screen.width / 2.0) - (w / 2.0);
    y = parseInt(screen.height / 2.0) - (h / 2.0);

    if (document.attachEvent) {
        // Pesky MSIE + XP SP2
        w += 15;
        h += 35;
    }

    window.open(href, target, 'left=' + x + ',top=' + y + ',width=' + w + ',height=' + h + ',scrollbars=yes,resizable=yes,statusbar=no');
}


