// ========= pop-up picture
  function winPopUp(url,w,h)
  {
    var winURL = 'pic.asp?s='+ url;
    var winIme = 'Pic';
    var winAtributi =
      'width=' + w
    + ',height=' + h
    + ',toolbar=no'
    + ',location=no'
    + ',directories=no'
    + ',status=yes'
    + ',menubar=no' + 
    + ',scrollbars=no' + 
    + ',resizable=no';

    eval("window.open(winURL, winIme, winAtributi)");
  }
	
	
	function checkSearch()
	{
		if (!document.forma.prezime.value.length > 0 )
		{
			alert ("Potrebno je unijeti barem prvo slovo prezimena!");
		}
		else {
			document.forma.submit();
		}
	}
	
	function checkSignUp()
	{
		var errorMsg = "";
		if ( document.forma.fIme.value == '' ) errorMsg += "- ime i prezime\n";
		if ( document.forma.fEmail.value == '' ) errorMsg += "- e-mail\n";
		if ( document.forma.fCaptcha.value == '' ) errorMsg += "- sigurnosni kôd\n";

		if ( errorMsg != "" )
		{
			alert ( "Molimo ispunite barem sljedeæa polja:\n" + errorMsg );
		}
		else {
			document.forma.submit();
		}
	}


// CAPTCHA
function RefreshImage(valImageId) {
	var objImage = document.images[valImageId];
	if (objImage == undefined) {
		return;
	}
	var now = new Date();
	objImage.src = objImage.src.split('?')[0] + '?x=' + now.toUTCString();
}
