function bookmarksite(title,url){
    alert ("Nyomja meg a Ctrl+D billentyűket!");
   /* if (window.sidebar) // firefox
        window.sidebar.addPanel(title, url, "");
    else if(window.opera && window.print){ // opera
        var elem = document.createElement('a');
        elem.setAttribute('href',url);
        elem.setAttribute('title',title);
        elem.setAttribute('rel','sidebar');
        elem.click();
    } 
    else if(document.all)// ie
        window.external.AddFavorite(url, title);*/
}

function getUrlVars()
{
    var vars = [], hash;
    var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); 
    for(var i = 0; i < hashes.length; i++)
    {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    } 
    return vars;
}

HistoryChangeFunction = function(title) {
//document.title = title;
var script = document.createElement("script");
var head = document.getElementsByTagName("head")[0];
script.src = "http://www.statcounter.com/counter/counter.js";
script.type = "text/javascript";
head.appendChild(script); 
}
