function validateSpringAccount($username, $pw)
{
    return true;
    //remove when new SD (>1.4.1) is out (to activate account verification)
    $param1 = new vsp();
    $param1->login = $username;
    $param1->password = $pw;
    $soap = new SoapClient("http://planet-wars.eu/SpringAuthService.asmx?wsdl");
    $res = $soap->VerifySpringAccount($param1);
    return $res->VerifySpringAccountResult;
}