<html>
<head>
<title>Color Information</title>
<link rel=StyleSheet href="info344.css" type="text/css">

<script language="JavaScript">
<!---
function SetInformation(sColor) {
	
	opener.FinishStmt(sColor)
	window.close()

	}

-->
</script>

</head>
<body>
<h1>Pick a color from below:</h1>
<p>
<form name="DiagForm">
<input type="radio" Value="red" Name="Color"
	onClick="SetInformation(this.value)">  red<br>
<input type="radio" Value="blue" Name="Color"
	onClick="SetInformation(this.value)">  blue<br>
<input type="radio" Value="green" Name="Color"
	onClick="SetInformation(this.value)">  green<br>
<input type="radio" Value="yellow" Name="Color"
	onClick="SetInformation(this.value)">  yellow<br>
<input type="radio" Value="magenta" Name="Color"
	onClick="SetInformation(this.value)">  magenta<br>
<input type="radio" Value="cyan" Name="Color"
	onClick="SetInformation(this.value)">  cyan<br>
<input type="radio" Value="white" Name="Color"
	onClick="SetInformation(this.value)">  white<br>
<input type="radio" Value="gray" Name="Color"
	onClick="SetInformation(this.value)">  gray<br>

<p><center>
<input type="button" Value="Cancel" onClick="window.close()">
</center>
</form>

</body>
</html><