function FormFocus(myId)
{
	document.getElementById(myId).focus()
}

function FormSelect(myId)
{
	document.getElementById(myId).select()
}
