﻿// JScript File
function WebForm_AutoFocus(focusId) {
	var targetControl;          

	try {
		targetControl = document.getElementById(focusId);
		targetControl.focus();
		targetControl.scrollIntoView(true);
	}
	catch (e) {
	}
}


