$(document).ready(function()
{
    $("#login_fr").click(function (event){
	
        event.preventDefault(); 
      
    	$.post("includes/php/mod.login.php", $("#login-form").serialize(),
  			  function(data){
				if(data['result']=='ok'){
			    	tb_show('', 'includes/php/modal_change_place_admin_fr.php?height=205&width=400&username='+data['username']+'&password='+data['password'], null);
  			    }
		    	else
		    	{
					document.getElementById('login-form').submit();
		    	} 
  			  },"json");
    });
	
	$("#login_en").click(function (event){
	
        event.preventDefault(); 
      
    	$.post("includes/php/mod.login.php", $("#login-form").serialize(),
  			  function(data){
				if(data['result']=='ok'){
			    	tb_show('', 'includes/php/modal_change_place_admin_en.php?height=205&width=400&username='+data['username']+'&password='+data['password'], null);
  			    }
		    	else
		    	{
					document.getElementById('login-form').submit();
		    	} 
  			  },"json");
    });
});