        function zobrazAtributy() {
            var body = document.getElementsByTagName("body")[0];
            for (var atribut in location) {
                var elem = document.createElement("p");
                var text = document.createTextNode(atribut + ": " + location[atribut]);
                elem.appendChild(text);
                body.appendChild(elem);
            }
        }

