﻿function DovrsiStaniste(destFieldName){	
    var obj = document.getElementById(destFieldName);  
    if (obj != null){
	    var val=obj.value;
	    var w=window.open('/fcd/Dohvati/Staniste.aspx?start='+escape(val)+'&fieldname='+escape(destFieldName),'ChooseHabitat',
		    'width=1024,height=600,resizeable=yes,toolbar=no,location=no,menubar=no,directories=no,scrollbars=yes');
	    w.focus();	
	}
}

function DovrsiOpis(destFieldName){	
    var obj = document.getElementById(destFieldName);      
    if (obj != null){
	    var val=obj.value;	    
	    var w=window.open('/fcd/Dohvati/OpisTerena.aspx?start='+escape(val)+'&fieldname='+escape(destFieldName),'ChooseDescription',
		    'width=1024,height=600,resizeable=yes,toolbar=no,location=no,menubar=no,directories=no,scrollbars=yes');
	    w.focus();	
	}
}

function PrenesiOpis(listname, textname){
    var list = document.getElementById(listname);  
    var tb = document.getElementById(textname);  
    if (list!=null && tb!=null){
        var ind=list.selectedIndex;
		if (ind==-1) return;							
		tb.value=list.options[ind].text;		
    }
}

function PrenesiValue(listname, textname){
    var list = document.getElementById(listname);  
    var tb = document.getElementById(textname);  
    if (list!=null && tb!=null){
        var ind=list.selectedIndex;
		if (ind==-1) return;							
		tb.value=list.options[ind].value;		
    }
}

function DovrsiKoord(destFieldName){	
    var obj = document.getElementById(destFieldName);  
    if (obj != null){
	    var val=obj.value;
	    var w=window.open('/fcd/Dohvati/Koord.aspx?start='+escape(val)+'&fieldname='+escape(destFieldName),'ChooseKoord',
		    'width=1024,height=600,resizeable=yes,toolbar=no,location=no,menubar=no,directories=no,scrollbars=yes');
	    w.focus();	
	}
}


