// simulateur de getElementById pour les vieux MSIEif(document.all && !document.getElementById) {    document.getElementById = function(id) {         return document.all[id];    }}// changement de target des liens, par holovaty.com adapté par julien tessierfunction linksInNewWindow() {
    var c=document.links;    for(var i=0;i<c.length;i++) {        if(c[i].href.search('powerbook-fr.com')==-1 && c[i].href.search('macbook-fr.com')==-1 )            c[i].target="powerbookfr";    }
}

window.onload = linksInNewWindow;