// Dont Require Email
// version 0.1
// 28 May 2005
// Copyright (c) 2005, Adam Vandenberg
// 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 "Dont Require Email", and click Uninstall.
//
// ==UserScript==
// @name		Dont Require Email
// @namespace	http://adamv.com/greases/
// @description 	Pre-fill a fake email address on WordPress / MT / TypePad comment forms
// @include	*
// ==/UserScript==

(function(){
	
var theForm = document.forms["comments_form"] || document.forms["commentform"];
if (theForm){
	var theEmail = theForm.elements["email"];
	if (theEmail){
		if (theEmail.value=="") theEmail.value = "spam@spam.spam";
	}
}
})();
