function handleBannerClick(obj){        
  var containerBanner=$(obj).getParent();  
  var link=$(containerBanner).getProperty("rel");
  var banner_id=$(containerBanner).getProperty('id');  
  if ($(containerBanner).getProperty("target")=="_blank") {    
    new Request({url: '/ajax/handleBannerClick.php', method: 'get', async: true,onSuccess:function(){window.open(link);}}).send('banner_id='+banner_id);
  } else {    
    new Request({url: '/ajax/handleBannerClick.php', method: 'get', async: false,onSuccess:function(){document.location.href=link;}}).send('banner_id='+banner_id);
  }
}
window.addEvent('domready', function() {
	Milkbox.initialize();
});
