function Focus()
{
	document.search.txtSearch.focus();
}
		
function TrapKeyDown(btn, event)
{
	// if the browser is IE
	if (document.all)
	{
		// if the enter key is pressed
		if (event.keyCode == 13)
		{
			event.returnValue = false;
			event.cancel = true;
			btn.click();
		}
	}
	// else if the browser is Netscape ( document.layers is for NN4 and below )
	else if (document.getElementById || document.layers)
	{
		// if the enter key is pressed
		if (event.which == 13)
		{
			event.returnValue = false;
			event.cancel = true;
			btn.click();
		}
	}
}	
