// PoundPrivacy User Script
// version 1.0
// 2006-10-01
// Copyright (c) 2006, Virante, Inc.
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "PoundPrivacy", and click Uninstall.\
// 
// This script will append the #privacy phrase to searches made in
// Google, Ask, MSN, and Live.com.
//
// Note: Until the search engines comply, the #privacy will corrupt your
// search results. 
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          #Privacy
// @namespace     http://www.poundprivacy.org/
// @description   includes #privacy into search requests at major search engines
// @include       http://www.google.com/*
// @include       http://www.msn.com/*
// @include       http://www.ask.com/*
// @include       http://www.live.com/*
// ==/UserScript==

var elems = document.getElementsByName('q');
elems[0].value='#privacy';


