Hi Kathy,
Yes there is. BTW you related to Mark?
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>New Page 3</title>
<script type="text/javascript" language="javascript">
function checkAnswer(theForm) {
debugger;
if (theForm.yesno[1].checked) {
if (theForm.Response.value.length > 0 ) {
return true;
} else {
alert("Please enter a reason.");
return false;
}
}
return true;
}
</script>
</head>
<body>
<form name="form1">
<input type="radio" checked name="yesno" > Yes
<input type="radio" name="yesno" onclick="this.form.Response.disabled=false; this.form.Response.focus(); alert('Please enter the
reason.'); " > No
<textarea name="Response" disabled >
</textarea>
<input type="submit" onclick="checkAnswer(this.form);" >
</form>
</body>
</html>