var IE = WScript.CreateObject("InternetExplorer.Application");
IE.Visible = true;
IE.Width = 1000; IE.Height = 1000;
IE.Navigate("https://www.google.com/accounts/ServiceLogin?"
+ "service=adsense&hl=ja<mpl=login&"
+ "ifr=true&passive=true&rm=hide&nui=3&alwf=true&"
+ "continue=https%3A%2F%2Fwww.google.com%2Fadsense%2Fgaiaauth&"
+ "followup=https%3A%2F%2Fwww.google.com%2Fadsense%2Fgaiaauth");
while(IE.busy) ;
while(IE.Document.readyState != "complete") ;
IE.Document.all('gaia_loginform').Email.value = "YOUR MAIL ADDRESS";
IE.Document.all('gaia_loginform').Passwd.value = "YOUR PASSWORD";
IE.Document.all('gaia_loginform').submit();
