function urlParams() {
var search = window.location.search.substr(1),
result = {};
if (search.length) {
search.split('&').forEach(function(item) {
var buf = item.split('=');
if (buf.length == 2)
result[buf[0]] = decodeURIComponent(buf[1]);
});
}
return result;
}
urlParams().name; //выведет Arthur