﻿function bookmark(adresa, naslov){
// dodatak za exoticu
    var ua=navigator.userAgent.toLowerCase();
    var isKonq=(ua.indexOf('konqueror')!=-1);
    var isSafari=(ua.indexOf('webkit')!=-1);
    var isMac=(ua.indexOf('mac')!=-1);
    var buttonStr=isMac?'Command/Cmd':'CTRL';
//
    if (window.sidebar) {
    	window.sidebar.addPanel(naslov, adresa,"");
    } else if( window.opera && window.print ) {
    	var mbm = document.createElement('a');
    	mbm.setAttribute('rel','sidebar');
    	mbm.setAttribute('href',adresa);
    	mbm.setAttribute('title',naslov);
    	mbm.click();
    } else if( document.all ) {
    	window.external.AddFavorite( adresa, naslov)
// OD OVOG ELSEA JE DODATAK ZA EXOTICU
    } else if(isKonq) {
      alert('You need to press CTRL + B to bookmark our site.');
    } else if(window.home || isSafari) { // Firefox, Netscape, Safari, iCab
      alert('You need to press '+buttonStr+' + D to bookmark our site.');
    } else if(!window.print || isMac) { // IE5/Mac and Safari 1.0
      alert('You need to press Command/Cmd + D to bookmark our site.');    
    } else {
      alert('In order to bookmark this site you need to do so manually '+
        'through your browser.');
    }
}
