function ISinternetok:Boolean;
var
IdIcmpClient: TIdIcmpClient;
begin
result:=False;
IdIcmpClient := TIdIcmpClient.Create(Self);
IdIcmpClient.ReceiveTimeout :=2000;
IdIcmpClient.Host :='www.baidu.com';
try
IdIcmpClient.Ping;
if IdIcmpClient.ReplyStatus.ReplyStatusType = rsecho then
result:=True;
except
end;
end;