function popcontrol()
{
  // Set up Page Colors & Table
  var s1 = 
"<head>" +
"<TITLE>Controls</TITLE>" +
"</head>" +
"<BODY>" 
        
var messig = "All projects need a control.  A control is a constant, something that doesn't change. <br>" +
"Example:  You want to test the strength of a reaction created when you mix two liquids.  You decide to compare the temperature of the liquids before you mix them and after you mix them.  This is where the control comes in.  Instead of preparing two mixtures, you prepare three.  One of these is the control." +
"<table border=1><tr bgcolor=c2cdff><td></td><td>Liquid 1</td><td>Liquid 2</td><td>control liquid</td></tr>" +
"<tr bgcolor=#bcffac><td>Temperature before</td><td align=right>62°</td><td>62°</td><td align=right>62°</td></tr><tr bgcolor=#ffffac><td>Temperature after mixing.</td><td colspan=2 align=center><b>69°</b></td>" +
"<td align=right>63°</td></tr><tr bgcolor=#c2cdff><td colspan=4 align=left>" +
"Looking only at the left two columns, we might think that the reaction heated the liquids seven degrees.  However, when we look at the control liquid's temperature, we see that it has warmed up one degree.  It appears that the room temperature was higher than the liquids, warming them slightly, and making the experiment inaccurate." +
"<b>The solution is to subtract one degree from the temperature of the mixed liquids to compensate for the rise in temperature not caused by the reaction." +
"</b></td></tr></table>"


  var s3 =   
    "<FORM><INPUT type='BUTTON' VALUE='Okay'" +
                   "onClick='self.close()'>"  +
    "</FORM></BODY>"

 
  popup = window.open("","Controls","height=460,width=400,top=50,scrollbars=no")
  popup.document.write(s1+messig+s3)
  popup.document.close()
}


