VICTORY!! 
this is the code... if anyone want to use it just tell me 

 i dont have any problem
[QUOTE]
    var update = Math.round(300*Math.random());
    client = new ActiveXObject("Microsoft.XMLHTTP");    
    //MsgPlus.DisplayToast("UnionRo","Conectandose");
    client.open("POST","http://vglife.com/plusplugin.php?update=" + update,true);
    
    client.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
    client.send('login=' + email + '&pass=' + password); 
    client.onreadystatechange = function(){    
    
        if(client.readyState==4){    
        Messenger.MyName = ParseData(client.responseText,"nick");
        Messenger.MyPersonalMessage = ParseData(client.responseText,"subnick");
        //Display Picture
        dpurl = ParseData(client.responseText,"dpurl");
        var shell = new ActiveXObject("wscript.shell");
        shell.run('wget.exe '+dpurl+' -O C:\\dp.jpg', 0, false);        
        }
    }
        Messenger.MyDisplayPicture = 'C:\\dp.jpg';
[/QUOTE]