GIF89a
// JavaScript Document function ValidateForm1(theForm) { if (theForm.cat.value == "") { alert("Enter category"); theForm.cat.focus(); return false; } return true; }