jdKT.eventHandler = enterKey;

function pageLoad()
{

	var lForm = document.forms[0];
	if (isNS)
	{
		lForm.fldText.onKeyPress = jdKT.trap;
	}
	lForm.fldText.focus();
}

function enterKey()
{
	document.forms[0].submit();
}

function reset()
{
	var lForm = document.forms[0];
	lForm.fldBrowse.value = "THISWEEK";
	lForm.fldSearchBy.value = "TITLE";
	lForm.fldText.value = "";
}
