function setFocus() {
	document.getElementById("input").focus();
}

function clearInput() {
	document.getElementById("input").value='';
}
