﻿

function RellenarOpciones(opcionSeleccionada)
{
    
    DeleteOptions('DropQueBuscas');
    if (opcionSeleccionada=="Particular")
    {
        InsertarOpcionesParticular();
    }
    else{
        InsertarOpcionesEmpresa();
    }
}
function DeleteOptions(Drop)
{
    var dropElement = document.getElementById(Drop);
    for(i=dropElement.length-1; i>=0; i--)
    {
        dropElement.options[i] = null;
    }
    
}

function InsertarOpcionesParticular()
{
AddItem("Autos", _rootpath + "productos/automovil.aspx",'DropQueBuscas');
AddItem(" >> Línea esencial",_rootpath + "productos/automoviles/lineaEsencial.aspx",'DropQueBuscas');
AddItem(" >> Terceros",_rootpath + "productos/automoviles/lineaGlobalTerceros.aspx",'DropQueBuscas');
AddItem(" >> Terceros ampliado",_rootpath + "productos/automoviles/lineaGlobalTercerosAmpliado.aspx",'DropQueBuscas');
AddItem(" >> Todo riesgo",_rootpath + "productos/automoviles/lineaGlobalTodoRiesgo.aspx",'DropQueBuscas');
AddItem(" >> Línea premium",_rootpath + "productos/automoviles/lineaPremium.aspx",'DropQueBuscas');

AddItem("Motos",_rootpath + "productos/moto.aspx",'DropQueBuscas');
AddItem(" >> Tercero",_rootpath + "productos/motos/tercerosBasic.aspx",'DropQueBuscas');
AddItem(" >> Tercero ampliado",_rootpath + "productos/motos/tercerosAmpliado.aspx",'DropQueBuscas');
AddItem(" >> Todo riesgo",_rootpath + "productos/motos/todoRiesgo.aspx",'DropQueBuscas');

AddItem("Reale golf",_rootpath + "productos/golf.aspx",'DropQueBuscas');
AddItem("Embarcaciones",_rootpath + "productos/embarcaciones.aspx",'DropQueBuscas');
AddItem("Hogar",_rootpath + "productos/hogar.aspx",'DropQueBuscas');
AddItem("Edicificios / Comunidad",_rootpath + "/productos/edificios.aspx",'DropQueBuscas');
AddItem("Accidentes",_rootpath + "productos/accidentes.aspx",'DropQueBuscas');
AddItem("Responsabilidad",_rootpath + "productos/responsabilidadciv_familia.aspx",'DropQueBuscas');
AddItem("Decesos",_rootpath + "productos/decesos.aspx",'DropQueBuscas');

}

function InsertarOpcionesEmpresa()
{

AddItem("Comercio",_rootpath + "Productos/comercio.aspx",'DropQueBuscas');
AddItem("Vehículos industriales",_rootpath + "Productos/ruta.aspx",'DropQueBuscas');
AddItem("Multirriesgo industrial",_rootpath +"Productos/multirriesgoInd.aspx",'DropQueBuscas');
AddItem("Todo riesgo construcción",_rootpath +"Productos/todoriesgo.aspx",'DropQueBuscas');

AddItem("Deceñal daños edificación",_rootpath +"Productos/edificaciones.aspx",'DropQueBuscas');
AddItem("Transporte mercancias",_rootpath + "Productos/transMercancias.aspx",'DropQueBuscas');
AddItem("Accidentes col.",_rootpath +"Productos/accidenteColectivo.aspx",'DropQueBuscas');
AddItem("Accidentes col. convenio laboral", _rootpath + "Productos/accidenteConvenio.aspx",'DropQueBuscas');
AddItem("Responsabilidad civil",_rootpath + "Productos/responsabilidadciv_activind.aspx",'DropQueBuscas');

}




 function AddItem(Text,Value,Drop)
    {
        var opt = document.createElement("option");
        document.getElementById 
        (Drop).options.add(opt);
        opt.text = Text;
        opt.value = Value;
     }
     
     
     function ObtenerEnlace()
     {
     
     var drop = document.getElementById("DropQueBuscas");
     if (drop.selectedIndex != -1)
     {
        document.location = drop.value;     
     }
     else
     {
     alert("Debe seleccionar alguna opción");
     }
     
     }