{
boolean checkUpdates = InstaSearchPlugin.getBoolPref(PreferenceConstants.P_CHECK_UPDATES);
if( !checkUpdates )
return;
CheckUpdatesJob checkUpdatesJob = new CheckUpdatesJob();
checkUpdatesJob.setSystem(true);
checkUpdatesJob.addJobChangeListener(new UpdateJobChangeListener());
checkUpdatesJob.schedule(InstaSearchPlugin.getIntPref(PreferenceConstants.P_UPDATE_CHECK_DELAY));
}