thanks, that seems it should work, but alas it doesnt, all text fileds work, so should i make it look like the top with?
Code:
with (thisform)
{
if (validate_required(email,"Email must be filled out!")==false)
{email.focus();
email.style.border='2px solid red';
return false;}
}
with (thisform)
{
if(document.getElementById('m21')[0].checked == true)
{
window.alert('Please select the state')
m21.focus();
return false;}
}