﻿function Onay()
{
    var seciliKayitSayisi = 0;
    var elements =  document.getElementsByTagName("INPUT");

    for(i=0; i<elements.length;i++)
    {
        if( IsCheckBox(elements[i]))
        {
            if(elements[i].checked==true)
                seciliKayitSayisi++;
        }
        
    }   
    if(seciliKayitSayisi == 0)
    {
        return false;
    }
    else{
        return confirm(seciliKayitSayisi+' adet kayıt silinecektir.Emin misiniz?');
    }
}
function SilOnay()
{
    return confirm('Kaydı Silmek İstediğinizden Emin Misiniz?');
}
function SoruSor(msg){
    return confirm(msg);
}

function PopUpWindow(url,wname)
{
    window.open(url,wname,'location=0,toolbar=0,height=500,width=600,resizable=0,scrollbars=0');
}
function PopUpWindow2(url,wname,width,height)
{
    window.open(url,wname,'location=0,toolbar=0,height='+height+',width='+width+',resizable=0,scrollbars=1');
    //return false;
}

function Hide(id){
    document.getElementById(id).style.visibility="hidden";
    document.getElementById(id).style.height="0px";
}
function Show(id){
    document.getElementById(id).style.visibility="visible";
    document.getElementById(id).style.height="auto";
}

function SetClass(id,classname) {

var element = document.getElementById(id);

element.setAttribute("class", classname); 

}
