function setFocus(field)
{
	if (document.getElementById(field))
	{
		document.getElementById(field).focus();
	} 
}
