// code to detect browser
var ie=(document.all?true:false);
// code to get the content with correct margin, specifically 20 more px than in firefox
if(ie){
  document.body.style.marginRight="40px";
}