* @param id wicket id
* @param completed true if the section has been completed, false otherwise.
* @return the appropriate image component for the 'completed' parameter
*/
public Component getCompletedImage(String id, boolean isComplete) {
Component image = new DoneImage(id);
image.setVisible(isComplete);
return image;
}