function writeIE() {
  if (is.ie4comp!=-1) document.write('<link rel="stylesheet" type="text/css" href="/views/rivierenland/css/ie.css" />');
}

function init() {
  onScroll(updateTopButton);
  if (is.ie4comp!=-1) setImgWidth();
}

function setImgWidth() {
  var contents = getElt('contents');
  if (wide==true) return;
  if(contents) {
    if (!document.getElementsByTagName) {
      return; 
    }
    var images = document.getElementsByTagName('img');
    for(var i=0; i<images.length; i++) {
      if(parseInt(images[i].width) >= 492) {
        images[i].width=492;
      }
    }
  }
}

function startList() {return;}