H = 718;
function ShowMeCalque()
{
	document.getElementById('overlay').style.height = H+"px";
	document.getElementById('overlay').style.visibility="visible";
}

function HideMeCalque()
{
	document.getElementById('overlay').style.height = H+"px";
	document.getElementById('overlay').style.visibility="hidden";
}

function Access()
{
	L = document.getElementById('txt1').value;
	P = document.getElementById('txt2').value;
	ind=file('Fr/Ajax/getAccess.aspx?login='+L+'&pwd='+P+'&rnd='+rnd()); 
	if(ind=="1")
	    HideMeCalque();	 
	if(ind=="0") alert("Vous ne pouvez pas accéder !");
}