function searchByDocNbr()
{
	with (document.frmList)
	{
		if (txtDocNbr.value.length == 0)
		{
			alert("You must enter a Layout Number to continue.");
			txtDocNbr.focus();
		}
		else
			submit();
	}
}
