	<h2><a name="&ObjectName;">&ObjectName;</a></h2>
	<script type="text/javascript">
		function formValidate() {
			tForm = document.getElementById("benchmarkTest");
			valid = true;
			message = "Invalid number: \n\n";
			
			values = tForm.elements;
			validNumber = /^\d+$/
			for (i=0;i<3;i++) {
				if(values[i].value.search(validNumber) == -1) {
					valid = false;
					message += values[i].name + ":" + values[i].value + "\n";
				}				
			}
			
			if (valid == false) {
				alert(message);
			}
						
			return valid;

		}
	</script>	
	
	<form id="benchmarkTest" action="benchmark" method="post" onsubmit="return formValidate();">
	<table width="50%">
		<tr>
			<th align="left">Cycles</th>
			<th align="left">Duration</th>
			<th align="left">Delay between cycles</th>
		</tr>