/*
* @title Insert Current Location
* @description insert map link to focused input
* @include http://*
* @license MIT aLicense
* @require http://gist.github.com/3239.txt#createElementFromString
* @require http://gist.github.com/228509.txt#getCurrentLocationMapLink
*/
var input = (document.activeElement || window.getSelection().focusNode);
getCurrentLocationMapLink(function (url) {
input.value += ' ' + url;
});