function CheckUser()
{		
	if (document.getElementById('txtUser').value=='am' && document.getElementById('txtPassWord').value=='duong')
	{		
		window.location.href='teoria.htm';
		return;
	}
	else
	{
		alert("Utente non riconosciuto!")				
	}
}		
