var PAGE_LIST_USERS = 'index.php?id=344';
var PAGE_LIST_GROUPS = 'index.php?id=349';
var PAGE_LIST_ARTICLES = 'index.php?id=351';
var PAGE_LIST_CATEGORIES = 'index.php?id=356';
var PAGE_LIST_REGIONS = 'index.php?id=358';
var PAGE_LIST_CURRENCIES = 'index.php?id=364';
var PAGE_LIST_DISTRIBUTORS = 'index.php?id=368';
var PAGE_LIST_SELLERS = 'index.php?id=370';
var PAGE_CART = 'index.php?id=374';
var PAGE_LOGIN = 'index.php?id=342';

function setEvents(){
	$('#logout').click(function(){
		logout();
		return false;
	});
}

function checkLogin(){
	var value = false;
	$.ajax({
		url: "gestion/ajax/login/checkLogin.php",
		async: false,
		type: "POST",
		success: function(data){
			if(data == 0){
				logout();
			}
			else{
				value = true;
			}
		}
	});
	return value;
}

function logout(){
	$.ajax({
		url: "gestion/ajax/login/logout.php",
		async: false,
		type: "POST",
		success: function(data){
			window.location.reload();
		}
	});
}

function showMessage(id){
	$('#'+id).dialog({
		resizable: false,
		draggable: false,
		autoOpen: true,
		height:"auto",
		width:350,
		modal: true,
		close: function(ev, ui) {
			$(this).dialog("destroy");
		},
		buttons: {
			"Ok": function(){
				$(this).dialog('destroy');
			}
		}
	});
}