<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
	<title>Test Page</title>
	
	<!-- please reference 3.3.2 here -->
	<script type="text/javascript" src="PATH-TO-CKEDITOR-3.3.2/ckeditor.js"></script>
</head>
<body>

	<form action="" enctype="multipart/form-data" method="POST">
	
		<!-- one submit with name="submit" here (another at bottom of form) -->
		<input type="submit" class="submit" name="submit" value="Save">

		<h2 id="ex-hdr" class="grp-hdr">Part A</h2>
		<div class="rich-edit">
			<textarea name="comp[30]" id="comp-text-30"></textarea>
			<script type="text/javascript">
				CKEDITOR.replace("comp-text-30",
				{
					toolbar :
			        [
			            ["Bold", "Italic", "-", "NumberedList", "BulletedList", "-", "Link", "Unlink", "-", "Anchor"]
			        ]
				});
			</script>
		</div>
		<h2 id="ex-hdr" class="grp-hdr">Part B</h2>
		<div class="rich-edit">
			<textarea name="comp[27]" id="comp-text-27"></textarea>
			<script type="text/javascript">
				CKEDITOR.replace("comp-text-27",
				{
					toolbar :
			        [
			            ["Bold", "Italic", "-", "NumberedList", "BulletedList", "-", "Link", "Unlink", "-", "Anchor"]
			        ]
				});
			</script>
		</div>
		<h2 id="ex-hdr" class="grp-hdr">Part C</h2>
		<div class="rich-edit">
			<textarea name="comp[29]" id="comp-text-29"></textarea>
			<script type="text/javascript">
				CKEDITOR.replace("comp-text-29",
				{
					toolbar :
			        [
			            ["Bold", "Italic", "-", "NumberedList", "BulletedList", "-", "Link", "Unlink", "-", "Anchor"]
			        ]
				});
			</script>
	
		</div>
		<h2 id="ex-hdr" class="grp-hdr">Part D</h2>
		<div class="rich-edit">
			<textarea name="comp[28]" id="comp-text-28"></textarea>
			<script type="text/javascript">
				CKEDITOR.replace("comp-text-28",
				{
					toolbar :
			        [
			            ["Bold", "Italic", "-", "NumberedList", "BulletedList", "-", "Link", "Unlink", "-", "Anchor"]
			        ]
				});
			</script>
		</div>
		
		<!-- another input with name="submit" down here -->
		<input type="submit" class="submit" name="submit" value="Save">

	</form>
</body>
</html>
