function Prod_Validation(theForm)
{
  if (theForm.prodsrch.value == "")
  {
    alert("Please Enter the Product Name");
    theForm.prodsrch.focus();
    return (false);
  }
  return (true);
}

function Comp_Validation(theForm)
{
  if (theForm.cname.value == "")
  {
    alert("Please Enter the Company Name");
    theForm.cname.focus();
    return (false);
  }
  return (true);
}
