function fieldFocus(formIndex, fieldIndex)
{
	if (document.forms.length > 0) 
	{
		document.forms[formIndex].elements[fieldIndex].focus();
	}
	
}
	
