// --------------------------------------------------------------------
//
// Hello User!
//
// If you are seeing this text, it means you don't yet meet the requirements for this tool.
//
// You must be running the Firefox browser, which you can get here: http://www.getfirefox.com
//
// Then you must be running the Greasemonkey add-on for Firefox, which you can get here: http://www.greasespot.net/
//
// Once you've got both of those prerequisites, restart Firefox and try clicking the "Install" link again.
//
// --------------------------------------------------------------------
// ==UserScript==
// @name           mybrutemanager
// @version        0.2m
// @namespace      http://www.gamertoolz.com
// @description    A temporary stepping stone to version 0.4
// @include        http://*gamertoolz.com/mybrute/mybrutemanager/migrate.php
// @copyright      Copyright (c) 2009 GamerToolz.com
// @maintainer     Tool Meister
// ==/UserScript==


var storage=GM_getValue('brutes', false);

if(storage && storage!=''){
	var form = document.forms.namedItem("configform");
	if(form){
		var push_config_brutes = form.elements.namedItem("push_config_brutes");
			if(push_config_brutes) push_config_brutes.value=storage;
		document.getElementById('loadconfig').style.display='';
	}
}