// JavaScript Utilities

//set the form field focus 
function setFocus(formName, fieldName) {
	var formEleId = document.getElementById(formName);
	if (formEleId) {
		formEleId[fieldName].focus();
	}
}