/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var Pokretni;
function DetaljnijeVesti(el){
    window.location = "?strana=NemaStrane&OpcijaRedirekcije=vesti&ID=" + el + "&kolona=3";
}
function PrikaziSveVesti(){
    window.location = "?strana=NemaStrane&OpcijaRedirekcije=sve-vesti&kolona=3";
}
function ObojiSve(el){
    el.style.backgroundColor = "#eff7fa";
    el.style.cursor = "pointer";
}
function VratiSve(el){
    el.style.backgroundColor = "#fff";
}
function ProslediID(el){
    Pokretni = el;
//alert(el);
}
function OvrisiSlikuIzvesti(){
    window.location = "Moduli/Vesti/Obrada/BrisanjeVesti.php?ID=" + Pokretni;
}
function OperacijeSaVestima(el){
    var news1 = document.getElementById("vesti1");
    var news2 = document.getElementById("vesti2");
    var news3 = document.getElementById("vesti3");
    var news5 = document.getElementById("vesti5");
    
    switch(el){
        case 1:{
            news1.style.display = "block";
            news2.style.display = "none";
            news3.style.display = "none";
            news5.style.display = "none";
            break;
        }
        
        
        case 2:{
            news1.style.display = "none";
            news2.style.display = "block";
            news3.style.display = "none";
            news5.style.display = "none";
            break;
        }
        case 3:{
            news1.style.display = "none";
            news2.style.display = "none";
            news3.style.display = "none";
            news5.style.display = "block";
            
            break;
        }
        case 4:{
            news1.style.display = "none";
            news2.style.display = "none";
            news5.style.display = "none";
            news3.style.display = "none";
            break;
        }
       
    }
}
function PrikaziBrojKarakteraNaslov(){
    var PrvaOpcija = document.getElementById("Displayporuka");
    var DrugaOpcija = document.getElementById("NaslovID");
    var BrojSlova = 30;

    var Promenljiva = DrugaOpcija.value;

    var Brojac = Promenljiva.length;
    
    var KonacanBroj = BrojSlova - Brojac;

    PrvaOpcija.innerHTML = "( Preostali broj karaktera: " + KonacanBroj + " )";
}
function PrikaziBrojKarakteraMiniTelo(){
    var PrvaOpcija = document.getElementById("Displayporuka");
    var TrecaOpcija = document.getElementById("MiniTeloID");
    var BrojSlova = 90;

    var Promenljiva = TrecaOpcija.value;

    var Brojac = Promenljiva.length;
    
    var KonacanBroj = BrojSlova - Brojac;

    PrvaOpcija.innerHTML = "( Preostali broj karaktera: " + KonacanBroj + " )";
}
function ismaxlength(obj){
    var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
    if (obj.getAttribute && obj.value.length>mlength)
        obj.value=obj.value.substring(0,mlength)
}
function EditujIzabranuVest(el){
    window.location = "?pozicija=modul&vrsta_modula=VES&ID=" +  el  + "&operacija_ves=edit";
    
}
function vestiOdluka(el){
    var promenljiva = document.getElementById("vesti8");

    switch(el){
        case 1:
            promenljiva.style.display = "block";
            break;
        case 2:
            promenljiva.style.display = "none";
            break;
    }
}
function ObisiUkupneVesti(el){
    window.location = "Moduli/Vesti/Obrada/BrisanjeUkupneVesti.php?ID=" + el;
}
