﻿//---------------------------------------------------------
// Posiziona il cursore nella textbox del login
//---------------------------------------------------------
function SetFormFocus() {
  
	var ctl = document.getElementById("txtLogin");
	if (ctl) {
		ctl.focus();
		ctl.select();
	}

}


