	$.ajax({
		type: "POST",
		url: "tartalom.php",
		data: {action: "login"},
		success: function (msg) {
			//alert('ok');//alert( msg );//if(msg=="
			//alert("msg=" + msg);
			$("#login_td").html(msg);
		},
		error: function () {
			alert('Hiba a login box betöltésekor!');
		},
		complete: function () {
			//alert('complete');
		}
	});

