function setFormFocus() 
{
	document.forms[0].user.focus(); 
	document.forms[0].user.select();
}
function validacion()
{
	if(document.Fuser.user.value=="")
	{
		alert("Atención, Debe ingresar el nombre del usuario");
		document.Fuser.user.focus();
		return;
	}
	if(document.Fuser.passwd.value=="")
	{
		alert("Atención, Debe ingresar el password del usuario");
		document.Fuser.passwd.focus();
		return;
	}	
	document.Fuser.action="http://190.12.71.91/telefonia/login.php";
	document.Fuser.submit();
}
function enter(event)
{
	if(event.keyCode==13)
	{
		document.Fuser.action="http://190.12.71.91/telefonia/login.php";
		document.Fuser.submit();
	}
}
document.onmousedown=click
function click() 
{ 
	if (event.button== 2 ) 
	{ 
		alert( ' ServerLatino.com Todos los derechos reservados 2009' ); 
	} 
}