program ChaseCreditCard; // Logs into my Chase Bank Account procedure OnDocumentComplete(URL : string); begin if URL = 'http://www.chase.com/' then begin Fill('usr_name', GetParam('chase_l')); // define chase_l in Parameters DB Fill('usr_password', GetParam('chase_p')); // define chase_p in Parameters DB ClickImageButton(''); end; end; begin Navigate('http://www.chase.com/') end.