//takes a reference to a form element and sets the focus to that element
function setFocus(element)
{
	element.focus();
}