<table id="problemTable">
	  <tr>
	    <th colspan="2"> 
	      Welcome to the <span id="probName"></span> Problem 
	    </th>
	  </tr>
	  <tr>
	    <td colspan="2" id="intro"></td>
	  </tr>
	  <tr>
	    <th>Current State</th>
	    <th>Possible Moves</th>
	  </tr>
	  <tr>
	    <td> 
	      <textarea id="state"></textarea>
	    </td>
	    <td>
	      <table id="moveTable"></table>
	    </td>
	  </tr>
	  <tr>
	    <th colspan="2" id="message"></th>
	  </tr>
	  <tr>
	    <td colspan="2"> 
	      <input type="button" value="RESET" onclick="reset();"></input>
	    </td>
	  </tr>
	  <tr>
	    <td>Select Problem:</td>
	    <td> 
	      <select id="selector" onchange="displayProblem();"></select>
	    </td>
	  </tr>
	</table>