window.onload = focusForm;

function focusForm() {
	if(document.getElementById("newpref")){
	   document.getElementById("newpref").focus();
	}  else if (document.getElementById("otherfieldname")){
	   document.getElementById("otherfieldname").focus();
	}
}
