document.user_id = '';
document.user_name = '';
document.user_email = '';

function IsNumeric(input){return (input - 0) == input && input.length > 0;}

jQuery(document).ready(function() {

jQuery.ajax({ type: "GET",   
		url     : "http://www.adevarul.ro/cas_local_auth.php",   
		async   : true,
		success : function(text) {
		
		if (text!=='false'){
		//auth
		var result = text.split('-');

  
    if (IsNumeric(result[0])){
      document.user_id = result[0]	
      document.user_name = result[1];
      document.user_email = result[2];

      document.getElementById('login-form').style.display = 'none';
      document.getElementById('logged-in').style.display = '';
      document.getElementById('logged-in-user').innerHTML = result[1];
      }
		

		} else {
		// no auth

		}

		}
		});

    });

