function tablo_kontrol()
{ 
  var strname = "/disticaretapp/TabloSecimi.do";
  document.forms[0].action = strname;
  document.forms[0].submit();
}

function periyot_kontrol()
{ 
  var strname = "/disticaretapp/PERIYOT.do";
  document.forms[0].action = strname;
  document.forms[0].submit();
}

function yil_ay_kontrol()
{
  var yil = document.getElementById("YIL1").selectedIndex;

  if ( (yil=="-1") ){
        alert(" HATALI==> Yıl seçiniz !!!");
        return false;
  }

//alert("ayvar:"+document.DisTicaretForm.ayvar.value);

  if (document.DisTicaretForm.ayvar.value=="1"){
            var ay = document.getElementById("AY_ADI").selectedIndex;
            if ( (ay=="-1") ){
                  alert(" HATALI==> Ay seçiniz !!!");
                  return false;
            }
  }
  
  document.DisTicaretForm.submit();

}//yil_ay_kontrol


function dallanma_kontrol()
{ 
  var tablo = document.getElementById("TABLO_ADI1").selectedIndex;

//alert(tablo);

    if ( (tablo=="-1") ){
        alert(" HATALI==> Tablo seçiniz !!!");
        return false;
    }

    var periyot = document.getElementById("periyotvar").value;
    if ( periyot=="1" ) {
      var l = document.DisTicaretForm.PERIYOT.length;
      var v=0;

      for (var i=0; i<l ; i++){
          if (document.DisTicaretForm.PERIYOT[i].checked)
            v=1;
      }

      
      if (v==0) {
           alert(" HATALI==> Periyot seçiniz !!!");
           return false;
      }
          
    }


    var dallanma = document.getElementById("dallanmavar").value;
    
    if ( dallanma=="1" ) {
      var l = document.DisTicaretForm.DALLANMA.length;
      var v=0;

      for (var i=0; i<l ; i++){
          if (document.DisTicaretForm.DALLANMA[i].checked)
            v=1;
      }
      
      if (v==0) {
           alert(" HATALI==> Dallanma seçiniz !!!");
           return false;
      }
    
    }
    

  var strname = "/disticaretapp/Dallanma.do";

  document.forms[0].action = strname;
  document.forms[0].submit();
}

function Yil_Kontrol()
{
    say1=0;
    max=10;


/*
    if (document.DisTicaretForm.kumulatif.value=="1")
    //kümülatif
      max = 1;
    else
      max = 10;
*/


    if (document.DisTicaretForm.maxyil.value=="10")
      //alert("10");
      max=10;
    else if (document.DisTicaretForm.maxyil.value=="5")
      //alert("5");
      max=5;



    for (var i = 0; i < document.getElementById("YIL1").length; i++)
     if (document.getElementById("YIL1").options[i].selected)   // Statements to perform if option is selected
    {
      say1=say1+1;
          {
            // gerek yok tum kalktı
             //if (i==0)  alert("Tüm yılları seçemezsiniz...");
          }
    }
    if (say1>max) 
    {
      alert("en fazla "+max+" yıl seçilebilir...");

      for (var i = 0; i < document.getElementById("YIL1").length; i++)
        document.getElementById("YIL1").options[i].selected = false;
    }
}

function Ay_Kontrol()
{
  say1=0;
  max=0;
  ad="";

  if (document.DisTicaretForm.kumulatif.value=="1"){
  //kümülatif
    max = 1;
    ad=" kümülatif dönem ";
  }
  else{
    max = 12;
    ad=" ay ";
  }


  for (var i = 0; i < document.getElementById("AY_ADI").length; i++)
       if (document.getElementById("AY_ADI").options[i].selected)   // Statements to perform if option is selected
      {
        say1=say1+1;
      }
  
  
  if (say1>max) 
  {
        alert("en fazla "+max+ad+"seçilebilir...");
      
        for (var i = 0; i < document.getElementById("AY_ADI").length; i++){
          document.getElementById("AY_ADI").options[i].selected = false;
        }
  }
}

function RaporTem()
{
 var aBase = 'Rapor.do?tem=1'; 
 document.forms[0].action=aBase;
 document.forms[0].submit();
}

