VERSION 5.00
Begin VB.Form Intro 
   BackColor       =   &H80000017&
   Caption         =   "Introduction"
   ClientHeight    =   6795
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   9480
   LinkTopic       =   "Form7"
   ScaleHeight     =   6795
   ScaleWidth      =   9480
   WindowState     =   2  'Maximized
   Begin VB.PictureBox Picture2 
      BackColor       =   &H80000008&
      BorderStyle     =   0  'None
      Height          =   1695
      Left            =   120
      ScaleHeight     =   1695
      ScaleWidth      =   6255
      TabIndex        =   5
      Top             =   360
      Width           =   6255
   End
   Begin VB.PictureBox Picture1 
      BackColor       =   &H80000008&
      BorderStyle     =   0  'None
      Height          =   6735
      Left            =   6120
      ScaleHeight     =   6735
      ScaleWidth      =   7455
      TabIndex        =   4
      Top             =   0
      Width           =   7455
   End
   Begin VB.CommandButton Command7 
      Caption         =   "&Begin"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   4440
      TabIndex        =   3
      Top             =   6240
      Width           =   855
   End
   Begin VB.CommandButton Command6 
      Caption         =   "&Exit..."
      Height          =   375
      Left            =   120
      TabIndex        =   2
      Top             =   7920
      Width           =   735
   End
   Begin VB.CommandButton Command5 
      Caption         =   "St&op"
      Height          =   375
      Left            =   4080
      TabIndex        =   1
      Top             =   4800
      Width           =   855
   End
   Begin VB.Image Image1 
      Height          =   7200
      Left            =   6000
      Top             =   0
      Width           =   7245
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      BackColor       =   &H8000000B&
      Caption         =   "         Welcome to the MARS fMRI          Main Menu"
      BeginProperty Font 
         Name            =   "Times New Roman"
         Size            =   13.5
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   2055
      Left            =   480
      MousePointer    =   2  'Cross
      TabIndex        =   0
      Top             =   2280
      Width           =   5055
   End
End
Attribute VB_Name = "Intro"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Command5_Click()
 ' Runs Stop Task
 Intro.Hide
'  StopOnDur! = InputBox("Please enter Stop Signal Delay:", "Stop Signal Duration On Input Box")
' StopOffDur! = InputBox("Please enter Stop Signal Duration:", "Stop Signal Duration Off Input Box")
 ' OnCtrlDur! = InputBox("Please enter Control Signal Delay:", "Go before Go")
 StopTask.Show
 End Sub
 
Private Sub Command6_Click()
' exits
 ShowMouse
 End
End Sub

Private Sub Command7_Click()
 formlist.Show
End Sub



