function changeAction(){
	
	var x=document.getElementById("myForm")
	x.action="katalog/podaci"
	x.submit()
}

function showNaplata(url){

	var CBuvijeti 	= document.getElementById("CBuvijeti");
	var SBpotvrda	= document.getElementById("SBpotvrda");
	var SBerror	= document.getElementById("SBerror");
	
	if( CBuvijeti.checked == true ){
		
		window.open(url,'_blank','left=20,top=20,width=800,height=590,toolbar=0,menubar=0,resizable=no,scrollbars=yes')
	
		SBpotvrda.style.display = '';
		SBerror.style.display = 'none';
	}
	if( CBuvijeti.checked == false ){
	
		SBpotvrda.style.display = 'none';
		SBerror.style.display = '';
	}
}

function showError(){

	alert('Niste prihvatili uvijete prodaje!');
}

