function start()
	{
	if(document.getElementById("search_box"))document.getElementById("search_box").focus()
	var c = document.getElementById("search").getElementsByTagName("INPUT")
	for (var d=0;d<c.length;d++){if(c[d].className.indexOf('btn')==0)c[d].onmouseover=function(){cursor_sniff(this.style);this.title="Search"}}
	}
	
function cursor_sniff(obj)
	{if (document.all)obj.cursor="hand";else obj.cursor="pointer"}

function goto(url)
	{location.href=url}
	
function searchquery(fm)
	{
	mt=true;
	fm.action="/search/"+fm.query.value.replace(/ /g,"-")
	return mt
	}
	
function nextpage(fm)
	{
	mt=true;
	fm.action="/search/"+ fm.start.value + "/" +fm.query.value.replace(/ /g,"-")
	return mt
	}


window.onload = start
