﻿// Fichier JScript

function setFocus()
{
	document.forms[0].TxtUserName.focus();
	document.forms[0].TxtUserName.select();
}
function TxtUserName_KeyPress(ev)
{
	if(ev.keyCode==13)
	{
		document.forms[0].TxtUserPass.focus();
		document.forms[0].TxtUserPass.select();
	}
	return true;
}

function TxtUserPass_KeyPress(ev)
{
	if(ev.keyCode==13)
		document.location.href=document.getElementById("Connecter").href;
	
	return true;
}