var DbPathJS="http://www.up-rs.si/up-rs/bmt.nsf";
function doSearch ( s ) {
var regExp1 = /\bfield\b/;
var regExp2 = /[()<>\[\]]/;
var str = s.value;
if ( str == "" ){
alert("Vnesite iskalni niz.");
s.focus();
} else {
if ( typeof regExp1.source != 'undefined' ) //supports regular expression testing
if ( regExp1.test( str ) || regExp2.test( str ) ){
var alrt = "Iskalni niz vsebuje neregularne znake.";
s.focus();
return alert( alrt );
}
var iskalniNiz = escape( str );
var SearchString = "/dokumentiweb?SearchView&Query=" + iskalniNiz + "&Start=1&Count=10";
location.href = DbPathJS + SearchString;
}
}
function returnFalse(s){
s = (s == null) ? document.forms[0].Query : s;
doSearch(s);
return false;
}
/**	
 * Foto-video picker 
 **/
function pojdi()
	{
		if (document.forms[0].izbira.options[document.forms[0].izbira.selectedIndex].value != "prazno")
			{
				location = document.forms[0].izbira.options[document.forms[0].izbira.selectedIndex].value
			}
	}
