function SetFocus(ControlName)
{
	var control = document.getElementById(ControlName);
	if( control != null ){
		control.focus();
		control.select();
	}

}