/*
* @title TOPSY SSS
* @description Topsy realtime social stream search
* @include http://topsy.com/s?*
* @license MIT License http://nrm.mit-license.org/2012
* @require
*/
// c.f. http://ptech.g.hatena.ne.jp/noromanba/20121103/1351964192
(function () {
var word = prompt('Search This');
if (!word) return;
location.href = 'http://topsy.com/s?window=realtime&allow_lang=all&q=' + encodeURIComponent(word);
})();