function popUp(URL) {
   day = new Date();
   id = day.getTime();
   eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=750,height=500,left = 240,top = 200');")}


$(document).ready(function() {

    $('a.lightbox').lightBox(); // Select all links with lightbox class
    
    $('#btn_uzklausa').click(function(){
        $('#uzklausa_rez').html('apdorojama...');
        $.ajax({  
            url: "/uzklausa",   
            type: "POST",      
            data: 'uzklausa='+$('textarea[name=uzklausa]').val(),       
            cache: false,  
            timeout: 3000,
            success: function (html) {                                 
                    $('#uzklausa_rez').html(html);
                    _gaq.push(['_trackEvent', 'anonimine_uzklausa', 'paspaude']);                
            },
            error: function() { alert('klaida: nepasiekiamas serveris');  }
        }); 
        $('textarea[name=uzklausa]').val('');
        return false; 
  });

});


