$(function(){
  $('.cms-tools a').click(function(e){
        cmsStopEvent(e);
  });
  $('.content a').click(function(e){
        cmsStopEvent(e);
  });
});
function cmsStopEvent(e){
    if(!e){
        e = window.event;
    }
    if(typeof(e) !== 'undefined'){
        e.cancelBubble = true;
        if(e.stopPropagation) e.stopPropagation();
    }
}
function cmsDelete(id){
    if(confirm("Are you sure you want to delete this entry?")){
        document.location.href = "?id="+id;
    }
}
