/// <summary>
 /// Start_Click. This method is called when the user clicks on the "Start" Button. It creates
 /// a new serverConfirm form and closes this form iff the user selected yes from the confirm 
 /// form.
 /// </summary>
 /// <param name="sender">Object</param>
 /// <param name="e">Event Click</param>
 private void Start_Click(object sender, EventArgs e)
 {
     confirm = new ServerSideConfirm(this);
     confirm.ShowDialog();
     if (confirm.answer == 1)
         Close();
 }