// ==UserScript==
// @name           	Auto Comfirm Friend Request 
// @namespace     	http://www.devilsworkshop.org
// @description 	Auto Comfirm Friend Request on Orkut
// @include        	http://*.orkut.com/*
// ==/UserScript==

window.addEventListener(
	'load',
	function() {

	if ( window.location.href.match("FriendAdd") == ("FriendAdd") ) 
		window.location.href = "javascript: _submitForm(document.getElementById('b1'),'yes');"

	if ( window.location.href.match("CommunityUnjoin") == ("CommunityUnjoin") ) 
		window.location.href = "javascript: _submitForm(document.getElementById('b1'),'unjoin');"
		
	},
	true);




