</tr>
	<tr>
	<td colspan="5">
		<textarea name="message" id="message" rows="15" cols="100"><?php 
    echo $message;
    ?>
</textarea>
	</td>
	</tr>

<!-----------------------Area Selector----------------------------->
	
<tr>
	<th>Publish to Area(s): </th>
	<td colspan="2"><?php 
    areaSelector($area, $msgID);
    ?>
</td>
</tr>

<!-----------------------SUBMIT BUTTON----------------------------->
	<tr>	
		<td><input type="submit" name="submit" value="Update Message"></td>
		<td><input type="button" onclick="window.close()" value="Cancel" /></td>
	</tr>
</table>
</form>

<?php 
}
require '../includes/includeAtEnd.php';
<!-----------------------MESSAGE CONTENT----------------------------->
<tr>
	<th colspan="4">Message:</th>
</tr>
	<tr>
	<td colspan="5">
		<textarea name="message" id="message" rows="15" cols="100"></textarea>
	</td>
	</tr>

<!-----------------------Area Selector----------------------------->
	
<tr>
	<th>Publish to Area(s): </th>
	<td colspan="2"><?php 
    areaSelector($area);
    ?>
</td>
</tr>
	<tr>

<!-----------------------SUBMIT BUTTON----------------------------->
	
		<td><input type="submit" name="submit" value="Post Message"></td>
		<td><input type='button' onclick="window.location.href='index.php'" value="Cancel" /></td>
	</tr>
</table>
</form>

<?php 
}