function login()
{

username = document.modulox.username.value;
if (username == '')
{
alert('Devi inserire la tua Email');
document.modulox.username.style.backgroundColor = '#F5B6B3';
document.modulox.username.focus();
return false; 
}


password= document.modulox.password.value;
if (password== '')
{
alert('Devi inserire la tua Password');
document.modulox.password.style.backgroundColor = '#F5B6B3';
document.modulox.password.focus();
return false; 
}

return true; 
}
