# File bin/splittemplate.rb, line 39
  def get(what)
    m = $cgi.params[what]
    case m   
    when String
      m      
    when Array
      m.flatten[0]
    else
      nil
    end
  end