/*
* @title Bing SSS
* @description Bing realtime social stream search
* @include http://www.bing.com/social/search?*
* @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://www.bing.com/social/search?q=' + encodeURIComponent(word);
})();