// JavaScript Document

$(document).ready(function(){
     if($('#breadcrumb')){
     findbreadcrumb();
     }
     
    $('#a_randevu_istiyorum1, #a_randevu_istiyorum2, #a_randevu_istiyorum3, #a_randevu_istiyorum4').click( function() {
        window.open ("https://info.aegon.com.tr/user/randevu_talep.php","randevu_window","location=0,status=1,scrollbars=1,width=400,height=520");
        return false;
    });

    $('#a_online_islemler1, #a_online_islemler2, #a_online_islemler3').click( function() {
        window.open ("https://info.aegon.com.tr/","online_window","resizable=0,location=0,status=1,scrollbars=1,width=800,height=600");
        return false;
    });

    $('#a_hesaplamalar1').click( function() {
        window.open ("http://212.175.98.204/fpaweb","online_window","resizable=0,location=0,status=1,scrollbars=1,width=800,height=600");
        return false;
    });


    $('#sbflink1').click( function() {
        window.open ("/turkce/products/sbf_g.php","sbf_window","resizable=0,location=0,status=1,scrollbars=1,width=800,height=600");
        return false;
    });

    $('#fonkuruluRaporNav1').change( function() {
        if($('#fonkuruluRaporNav1').attr('value')){
        window.open ($('#fonkuruluRaporNav1').attr('value'),"fonkur_window","resizable=0,location=0,status=1,scrollbars=1,width=800,height=600");
        }
        return false;
    });

    $('#katilimcilaraDuyuruNav1').change( function() {
        if($('#katilimcilaraDuyuruNav1').attr('value')){
        window.open ($('#katilimcilaraDuyuruNav1').attr('value'),"katduy_window","resizable=1,location=0,status=1,scrollbars=1,width=800,height=600");
        }
        return false;
    });

    $('#worldwideSelect').change( function() {
        if($('#worldwideSelect').attr('value')){
        window.open ($('#worldwideSelect').attr('value'),"worldwide_window","resizable=1,location=1,toolbar=1,menubar=1,status=1,scrollbars=1,width=800,height=600");
        }
        return false;
    });
     
 });


  function findbreadcrumb(){
  var bc = '';
  
    if($("#level_0_active").attr('href')){
    bc += '<a href="'+$("#level_0_active").attr('href')+'">'+$("#level_0_active").html()+'</a>';
    }

    if($("#level_1_active").attr('href')){
    bc += ' / <a href="'+$("#level_1_active").attr('href')+'">'+$("#level_1_active").html()+'</a>';
    }

    if($("#level_2_active").attr('href')){
    bc += ' / <a href="'+$("#level_2_active").attr('href')+'">'+$("#level_2_active").html()+'</a>';
    }
  
    if(bc){
    $('#breadcrumb').html('Buradasınız: <a href="/index.html">AEGON Türkiye</a> / ' + bc);
    }else{
    var thetitle = $(document).attr('title');
    thetitleAry = thetitle.split('-');
    thetitle = '<a href="' + $(document).attr('location') + '">'+thetitleAry[1]+'</a>';
    
    $('#breadcrumb').html('Buradasınız: <a href="/index.html">AEGON Türkiye</a> / ' + thetitle);
    }
  }

