// JavaScript Document

function SubmitEnter( searchField, e )
{
	var keycode;
	
	if( window.event )
		keycode = window.event.keyCode;
	else if( e ) 
		keycode = e.which;
	else 
		return true;
		
	if( keycode === 13 )
	{
		window.location.href = "http://search.spokaneschools.org/search?ie=&site=SPS&output=xml_no_dtd&client=SPS&lr=&proxystylesheet=SPS&oe=&restrict=sps&q=" + document.getElementById('googleQuery').value;
		return false;
	}
	else
	   return true;
}// end SubmitEnter