You can do it all in javascript.
<SCRIPT LANGUAGE="JavaScript">
<!--
Function checkString(field,field_label)
{
trimmed = field.replace(/ /gi,""); // remove spaces
if (trimmed.length==0){
document.form.field_label.focus();
alert(field_label+" must have value");
}
}
//-->
</SCRIPT>