/*log-in candidat*/
function login(){
    document.logForm.action="action/login.php"; 
    document.logForm.submit(); 
}
/*parola uitata candidat*/
function passwordforgotten(){
    document.logForm.action="action/new_password.php"; 
    document.logForm.submit(); 
}
/*ascunde mesajul de eroare*/
function hideerror(){
    var element = document.getElementById('errmsg');
    element.style.display = "none";
}
/*utilizator nou*/
function newuser(){
    document.logForm.action="action/new_user.php"; 
    document.logForm.submit(); 
}
/*prima pagina*/
function home(){
    document.logForm.action="action/home.php"; 
    document.logForm.submit(); 
}
