function getQueryString() {
    var src = location.href;
    return _param = src.indexOf('?') > -1 ? decodeURIComponent(src.substr(src.indexOf('?') + 1)) : '';
}

function popup(url, name, options) {
	window.open(url, name, options);
}
