
// ---------- script properties ----------


var results_location = "menu.htm";


// ---------- end of script properties ----------


function search_form(jse_Form) 
{
	if (jse_Form.d.value.length > 0) 
	{
        // save the search query - this allows the search and forms to be one seperate pages
		// write the fact that a search is being done to the cookie (allows the page loading to be "smart" 
		// about the current state - useful when the results are displayed on the same page as the form

		document.cookie = "d=" + escape(jse_Form.d.value)
		document.cookie = "search=1"
		
        // update the window location to display the search results
		window.location = results_location;
	}
}
