﻿// JavaScript Document

function submitcategorySearch()
  {
		var strAction
	  document.frmcategory.txtSearch.value=Trim(document.frmcategory.txtSearch.value);
	if (document.frmcategory.txtSearch.value=="" || Len(document.frmcategory.txtSearch.value)<3)
	{
		alert("Please enter text for category products search (min 3 characters)")
		document.frmcategory.txtSearch.focus();
		return false;
	}
	return true;
  }
