<!--
// Lonnie Lee Best
function Main()
{
	document.onkeypress = processKey;
	setFocus();

}
onload = Main;
parent.onload = setFocus;

function setFocus()
{
	parent.frames['search'].document.getElementById("txtBox").focus();
}

function processKey(e)
{    
	if (null == e)        
	e = window.event;    
	if (e.keyCode == 13)
	{
		search();
	}
}

function search()
{
	var q = "q=" + escape(document.getElementById("txtBox").value);
	parent.google.location.href = 'http://www.google.com/' + "#" + q;
	parent.bing.location.href = "http://www.bing.com/" + "?" + q;
}

// -->
