﻿if (!Banner) {
    var Banner = new function() {

        this.UrlBase = null;
        this.IdProductoVidaAhorro = null;
        this.IdProductoVidaRiesgo = null;
        this.IdProductoSalud = null;

        this.Inicializar = function(urlBase, idProductoVidaAhorro, idProductoVidaRiesgo, idProductoSalud) {
            this.UrlBase = urlBase;
            this.IdProductoSalud = idProductoSalud;
            this.IdProductoVidaAhorro = idProductoVidaAhorro;
            this.IdProductoVidaRiesgo = idProductoVidaRiesgo;
            this.ShowFlashPromociones();
        }

        this.ShowFlashPromociones = function() {
            var idCapa = "promociones";
            if ($get(idCapa) && swfobject.hasFlashPlayerVersion("9")) {
                var params = {};
                params.wmode = "opaque";
                swfobject.embedSWF(this.UrlBase + "Swf/reale-ofvirtual.swf", idCapa, "347", "203", "9.0.0", false, null, params)
            }
        }

        this.IrVidaRiesgo = function() {
            window.location = this.UrlBase + 'Producto/vida-riesgo-' + this.IdProductoVidaRiesgo + '.aspx';
        }

        this.IrVidaAhorro = function() {
            window.location = this.UrlBase + 'Producto/vida-ahorro-' + this.IdProductoVidaAhorro + '.aspx';
        }

        this.IrSalud = function() {
            window.location = this.UrlBase + 'Producto/reale-salud-' + this.IdProductoSalud + '.aspx';
        }
    }
}
