/*************************************************************************
 *
 * (C) Copyright 2003, 2004, 2005 Daxal Communications.
 * webmaster@surfthe.us
 *
 * All rights reserved.
 * for use when including searchout.shtml
 *
 * 1/15/2005 scotte
 * split up javascripts for each form.
 * references by element ID instead of DOM structure.
 * (xhtml strict has no name= attribute for forms)
 *
 */

function searchFormInitObjects()
{
	var e;
	if (e = document.getElementById('form.searchout')) {
		e.q.focus();
	}
}

window.onload = searchFormInitObjects;
