/* -- POPUP OPENER -- */

$(document).ready(function() 
{
  $('.popup').click (function (event)
  {
    var width  = 575,

        height = 400,

        left = ($(window).width() - width)  / 2,

        top = ($(window).height() - height) / 2,

        id = this.id,

        url = this.href,

        opts = 'status=1' +

               ',width=' + width +

               ',height=' + height +

               ',top=' + top +

               ',left=' + left;

    window.open (url, '', opts);
	
	logAction (id);

    return false;
  });  
});

function logAction (type) 
{
	$.ajax
	({
	   type: "GET",
	   
	   url: "http://www.manaslecas.lv/logVisit.php",
	   
	   data: "type=" + type
	});
}
