document.write('<script type="text/javascript" src="http://yui.yahooapis.com/2.3.1/build/yahoo/yahoo-min.js" ></script>');
document.write('<script type="text/javascript" src="http://yui.yahooapis.com/2.3.1/build/event/event-min.js" ></script>');

function doSearch(e) {
	if (e.type == "keypress") {
		if (e.keyCode != 13) return true;
	}
	var text = document.getElementById("queryInput").value;
	if (text != null && text.length > 0) {
        location.href = "search.jsp?skin=" + skin + "&q=" + encodeURIComponent(text);
	}
	return false;
}

function initSearchBox() {
	var e = document.getElementById("querySubmit");
	if (e != null) YAHOO.util.Event.addListener(e, "click", doSearch);
	e = document.getElementById("queryInput");
	if (e != null) {
		YAHOO.util.Event.addListener(e, "keypress", doSearch);
		e.focus();
		if (query != null) {
			e.value = query;
		}
	}
}

window.onload = function() {
}
