// javascript

function provjeri() {
   if (document.form1.ime.value == "")  {
     alert("Molimo unesite ime.");
     document.form1.ime.focus();
     return false;
    }
return true; 
}

function provjeri_frejm() {
stranica = document.URL 
gdje = stranica.substring(stranica.indexOf('/kontra/'), stranica.length) /* OVAKO SADA RADI */
/* gdje = stranica.substring(stranica.indexOf('kontra.ba/')+9, stranica.length) /* OVAKO TREBA DA BUDE DA RADI */
if (top.location == self.location) 
top.location.href="../../index.php?site=" + stranica;
}

function cisti(polje) {
    if (polje.value == "ime") polje.value = "";
    if (polje.value == "name") polje.value = "";
    if (polje.value == "email") polje.value = "";
    if (polje.value == "gsm") polje.value = "";
}	


function popuni(polje) {
   if (polje.value == "") polje.value = "ime";
}
function popuni2(polje) {
   if (polje.value == "") polje.value = "email";
}
function popuni3(polje) {
   if (polje.value == "") polje.value = "gsm";
}
