function Trazi() {
var tag = document.trazi.tag.value;
location.href = "http://www.svilinkovi.com/rezultat.php?tag="+tag;
}

function MessageCharCount(info, n, max) {
 
  Lunghezza = info.value.length;
  if (Lunghezza > max ) {
	info.value = info.value.substring(0,max);
  }
  n.value = info.value.length;    
}


function favoriti() {
var IEstring = "<a href='javascript:window.external.addFavorite(location.href,document.title);' title='Dodaj u favorite :: sviLinkovi.com'>FAVORITI<\/a>" ;
var NSstring = "<a href='javascript: void(0)'>Klikni [Ctrl + D] |<\/a>";
var OPstring = "<a href='javascript: void(0)'>Klikni [Ctrl + T] |<\/a>";
var OTHstring = "<a href='javascript: void(0)'>FAVORITI<\/a>"
var whichString = OTHstring ;
var agt = navigator.userAgent.toLowerCase();
var app = navigator.appName.toLowerCase();
var ieAgent = agt.indexOf('msie');
var nsAgent = app.indexOf('netscape');
var opAgent = app.indexOf('opera');
if (ieAgent!= -1) { whichString = IEstring; } else if (nsAgent!= -1){ whichString = NSstring; } else if (opAgent!= -1){whichString = OPstring; }
document.write(whichString);
}