// functions
function IsValidEmail(email)
{
var filter = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
return filter.test(email);
}	

function error(msg){
$("#msg").html('<div class="error">' + msg + '</div>');
}	
	
function succes(msg){
$("#msg").html('<div class="error">' + msg + '</div>');
}

// login
$(document).ready(function(){
	$("#login_top_btn").click(function(){
	var errors = 0;	
	
	var user_top = $("#user_top").val();
	if(user_top == '' & errors == 0)
		{
		alert('Utilizatorul trebuie completat');
		$("#user_top").focus();
		errors = 1;
		}

	var pass_top = $("#pass_top").val();
	if(pass_top == '' & errors == 0)
		{
		alert('Parola trebuie completata');
		$("#pass_top").focus();
		errors = 1;
		}

	if(errors != 0)
	{
	return false;
	}
	else
	{
	return true;
	}
	
	});

});

	// Dropdown
	$(document).ready(function(){
	$("#album").change(function(){
		$("#dropdown_select").submit();
		});
	});
