it's pretty easy to do, just write a function(s) that checks that each box has been filled (and even that any fields you can check are valid)
Then when the submit button is hit, if anything is missing a javascript alert pops up 
PHP Code:
<SCRIPT LANGUAGE="JavaScript">
/** Checks if field is blank */
function isNotEmpty(field)
{
if (field.value == "")
{
alert ("The field is blank. Please Complete the field.")
field.focus();
return false;
}
else
return true;
}
</SCRIPT>
and call it with this inside each form element:
PHP Code:
onChange="return isNotEmpty(this);}"
I use it instead of doing it serverside, makes it easier on both sides
Bookmarks