mettre dans un widget texte ce code :
<script type="text/javascript">
var a = document.getElementsByTagName('a');
var re = new RegExp("^http(s?)://" + window.location.host);
for (var i=0;i<a.length;i++) {
if (!a[i].href.match(re)) {
a[i].onclick = function() {
window.open(this.href); return false;
}
}
}
</script>
