﻿function fSubmit(){
    if(trimUndefined(tUserNaziv.value)==""){
        alert('Polje "korisničko ime" mora ispravno biti popunjeno!')
        tUserNaziv.focus();
    }else if(trimUndefined(tUserLozinka.value)==""){
        alert('Polje "lozinka" mora ispravno biti popunjeno!')
        tUserLozinka.focus();
    }else{
        showSD();
        senderBt.value="btSubmit";
        document.forms[0].submit();
    }
}
//----------------------------------
  function clicker2(fn){
	    if(trimUndefined(fn)!="") fLink(fn);
    }
    var id2;
    function chF2(id2){
	    //skriva i prikazuje podfoldere
	    if(document.getElementById('div'+id2).style.display!='block'){
		   document.getElementById('div'+id2).style.display='block';
		   if(document.getElementById('img'+id2)) document.getElementById('img'+id2).src="images/icoMinus.gif";
		   document.getElementById('folder'+id2).src="images/icoFolderOpen.gif";
	    }else{
		   document.getElementById('div'+id2).style.display='none';
		   if (document.getElementById('img'+id2)) document.getElementById('img'+id2).src="images/icoPlus.gif";
		   document.getElementById('folder'+id2).src="images/icoFolder.gif"
	    }
    }
    function chF(id){
	    //skriva i prikazuje podfoldere
//	    if(document.getElementById('div'+id).style.display!='block'){
	    if(document.getElementById('div'+id).style.display=='none'){
		   document.getElementById('div'+id).style.display='block';
		   if(document.getElementById('img'+id)) document.getElementById('img'+id).src="images/icoMinus.gif";
		   document.getElementById('folder'+id).src="images/icoFolderOpen.gif";
	    }else{
		   document.getElementById('div'+id).style.display='none';
		   if (document.getElementById('img'+id)) document.getElementById('img'+id).src="images/icoPlus.gif";
		   document.getElementById('folder'+id).src="images/icoFolder.gif"
	    }
    }
    
    function fillF2(id2){
//	    document.getElementById('name'+id2).style.backgroundColor="#0A246A";
//	    document.getElementById('name'+id2).style.color="#FFFFFF";
	    sImg=trim(document.getElementById('folder'+id2).src);
	    aImg=sImg.split("/")
	    sImg=aImg[aImg.length-1];
	    if (trimUndefined(bioselektiran2)!=trimUndefined(id2)){
//		    document.getElementById('name'+bioselektiran2).style.backgroundColor="transparent";
//		    document.getElementById('name'+bioselektiran2).style.color="#000000";
		    sImg=trim(document.getElementById('folder'+id2).src);
	        aImg=sImg.split("/")
	        sImg=aImg[aImg.length-1];
	    }
	    bioselektiran2=id2;
	    //zove funkciju za prikaz trenutno otvorene mape u txt
	    clicker2(document.getElementById('path'+id2).value);
    }
    var bioselektiran2=1;//default ovoren


