Chuck,
Were you able to replicate that error with IE8? I installed RP on my
VB 4.04 test site and got the same behavior. Then I tested on my
VB 4.03 set site and got the same behavior there as well.
IE8 seems to be ok with :
function checkForm (form) {
if (form.title.value == "") {
alert( "{$rp_phrase['blanktitle']}" );
form.title.focus();
return false;
}
but then has issues with:
if (form.extra1.value == "" ) {
alert( "{$rp_phrase['blankfield']}: {$Globals['extra1name']}" );
form.extra1.focus();
return false;
}
the code for all 6 other than the name looks the same.