<!--
function Submit(frmName)
{
frmName.submit();
}

function SubmitSearch()
{
if (Validator(Search) == true)
	{
	Search.submit();
	}
}

function Validator(theForm)
{
  if (theForm.CiRestriction.value == "Keyword Search")
  {
    alert("Please enter a value for the Keyword search field.");
    theForm.CiRestriction.focus();
    return (false);
  } 

  if (theForm.CiRestriction.value == "")
  {
    alert("Please enter a value for the Keyword search field.");
    theForm.CiRestriction.focus();
    return (false);
  }

  if (theForm.CiRestriction.value.length < 3)
  {
    alert("Please enter at least 3 characters in the Keyword search field.");
    theForm.CiRestriction.focus();
    return (false);
  }

  if (theForm.CiRestriction.value.length > 100)
  {
    alert("Please enter at most 100 characters in the Keyword search field.");
    theForm.CiRestriction.focus();
    return (false);
  }
  return (true);
}
//-->
