function focus(Id) {
	if (document.getElementById(Id)) {
		document.getElementById(Id).focus()
		document.getElementById(Id).select()
	}
}
