This works fine - I found some typos (mine)...
<SCRIPT language=JavaScript>
<!-- Begin
function checkRequired(theForm){
//check ID first
if (theForm.Q15.value.length!=6)
{
alert( "Please enter your six digit ID."

;
theForm.Q15.focus();
return false;
}
//ID is OK so check for blank questions
var missMess = ""
for (x=1; x <= 5; x++){
if ( x < 10 ){
thisAnswer = eval("theForm.Q0" + x )
}
else{
thisAnswer = eval("theForm.Q" + x )
}
answered = false
for (y=0; y<thisAnswer.length; y++){
if (thisAnswer[y].checked){
answered = true
}
}
if (!answered){
missMess += "\n-Question #" + x
}
}
doAnyways = true
if (missMess != ""

{
doAnyways = confirm("The following are blank. Do you wish to submit anyways?" + missMess)
}
return doAnyways;
}
var months=new Array(13);
months[1]="January";
months[2]="February";
months[3]="March";
months[4]="April";
months[5]="May";
months[6]="June";
months[7]="July";
months[8]="August";
months[9]="September";
months[10]="October";
months[11]="November";
months[12]="December";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) // Y2K Fix
year = year + 1900;
document.write(" " + lmonth + " "

;
document.write(date + " " + year + "</center>"

;
//number validation
function validate(field) {
var valid = "0123456789"
var ok = "yes";
var temp;
for (var i=0; i<field.value.length; i++) {
temp = "" + field.value.substring(i, i+1);
if (valid.indexOf(temp) == "-1"

ok = "no";
}
if (ok == "no"

{
alert("Your ID must be numeric"

;
field.focus();
field.select();
}
}
// End -->
</SCRIPT>
</head>
<font face="arial" size="-1" color="#293163">
<p><h3>Satisfaction Survey</h3></p>
<p>
Our strategy is to provide high quality service and value to our customers. To participate, please select the choices that best reflect your opinions.</b>.
</p>
<form method="post" action=""; onsubmit="return checkRequired(this)">
<INPUT type="hidden" NAME="form_version" VALUE="1"/>
<INPUT type="hidden" NAME="source_site" VALUE="xxx"/>
<INPUT type="hidden" NAME="thankyou" VALUE="
<INPUT type="hidden" NAME="thankyou_page" VALUE=""/>
<INPUT type="hidden" NAME="fieldorder" VALUE="Q01,Q02,Q03,Q04,Q05,Q06,Q07,Q08,Q09,Q10,Q11,Q12,Q13,Q14,Q15,Q16,Q17,Q18,Q19"/>
<p>
Please enter your ID <b>U</b><input type="text" maxlength="6" size="5" name="Q15" onBlur="validate(this)">
<p><b>HEADER</b><br>
1. Q1<br>
<table border=0>
<tr>
<Td width=150><font face="arial" size="-1"></td>
<td width=75><center><font face="arial" size="-1">Excellent</td>
<td width=150><center><font face="arial" size="-1">Very Good</td>
<td width=75><center><font face="arial" size="-1">Good</td>
<td width=75><center><font face="arial" size="-1">Fair</td>
<td width=75><center><font face="arial" size="-1">Poor</td>
</tr>
<tr>
<Td width=550><font face="arial" size="-1"><b>Management</b></td>
<td><center><input type=radio value="Excellent" name=Q01></td>
<td><center><input type=radio value="Very Good" name=Q01></td>
<td><center><input type=radio value="Good" name=Q01></td>
<td><center><input type=radio value="Fair" name=Q01></td>
<td><center><input type=radio value="Poor" name=Q01></td>
</tr>
<tr>
<Td width=550><font face="arial" size="-1"><b>Payroll Specialist</b></td>
<td><center><input type=radio value="Excellent" name=Q02></td>
<td><center><input type=radio value="Very Good" name=Q02></td>
<td><center><input type=radio value="Good" name=Q02></td>
<td><center><input type=radio value="Fair" name=Q02></td>
<td><center><input type=radio value="Poor" name=Q02></td>
</tr>
<tr>
<Td width=550><font face="arial" size="-1"><b>Operation Specialist</b></td>
<td><center><input type=radio value="Excellent" name=Q03></td>
<td><center><input type=radio value="Very Good" name=Q03></td>
<td><center><input type=radio value="Good" name=Q03></td>
<td><center><input type=radio value="Fair" name=Q03></td>
<td><center><input type=radio value="Poor" name=Q03></td>
</tr>
<tr>
<Td width=550><font face="arial" size="-1"><b>Training / Compliance Specialist</b></td>
<td><center><input type=radio value="Excellent" name=Q04></td>
<td><center><input type=radio value="Very Good" name=Q04></td>
<td><center><input type=radio value="Good" name=Q04></td>
<td><center><input type=radio value="Fair" name=Q04></td>
<td><center><input type=radio value="Poor" name=Q04></td>
</tr>
<tr>
<Td width=550><font face="arial" size="-1"><b>Employee Leasing Co. (EPIX)</b></td>
<td><center><input type=radio value="Excellent" name=Q05></td>
<td><center><input type=radio value="Very Good" name=Q05></td>
<td><center><input type=radio value="Good" name=Q05></td>
<td><center><input type=radio value="Fair" name=Q05></td>
<td><center><input type=radio value="Poor" name=Q05></td>
</tr>
</table>
<input type=submit> Get the Best Answers! faq333-2924
Is this an asp FAQ? faq333-3048
mikewolf@tst-us.com