// ==UserScript==
// @name          Show the Keypad on ING Direct
// @namespace     http://spig.net/userscripts/
// @description   Toggles the keyboard pinpad on ING Direct when logging in
// @date          2009-07-09
// @include       https://secure.ingdirect.com/myaccount/INGDirect/login_pinpad.vm
// @GM_version    0.8.20080609.0
// @version       0.1.1
// ==/UserScript==

var body, script;
body = document.getElementsByTagName('body')[0];
if (!body) { return; }
script = document.createElement('script');
script.type = "text/javascript";
script.innerHTML = "togglePinPads(false); document.getElementById('customerAuthenticationResponse.PIN').focus();";
body.appendChild(script);
