function SubmitLoginInfo()
{
	if((this.usuario.value=="") || (this.contrasena.value=="")){
		alert('Debe ingresar el usuario y contraseņa!');
		return;
	}
	
	this.loginForm.username.value = this.usuario.value;
	this.loginForm.password.value = this.contrasena.value;
	this.loginForm.submit();
}