// JavaScript Document

function checkNotEmpty()
{
	if (document.lzsearch.qry.value.length < 1)
	{
		alert('Please enter some search criteria');
		return false;
	}

}
