# File app/helpers/application_helper.rb, line 62
  def link_to_login_or_new
    return '' if @user
    ('<div class="note">%s or %s if you are interested in attending this ' +
     'conference</div>') %  [ link_to('Please register',
                                      :controller => '/people', 
                                      :action => 'new'),
                              link_to('log in',
                                      :controller => '/people',
                                      :action => 'login') ]
  end