#include <IE.au3>
$oIE = _IECreate("http://login.netmarble.net/login/login.asp",0,1,1,0 )
_IELoadWait ($oIE)
$oInputs = _IETagNameGetCollection ($oIE, "INPUT")
For $oInput In $oInputs
if $oInput.name = "put_id" then
$oInput.value="aadok"
EndIf
Next
For $oInput In $oInputs
if $oInput.name = "put_pwd" then
$oInput.value="5656789"
EndIf
Next
_IEImgClick($oIE, "l_login_01.gif", "src")
Exit