var ad = null

function switchAds() {
  if (ad == null) {
    ad = document.getElementById('ads-1').innerHTML
    document.getElementById('no-ads').style.display = document.getElementById('ads-2').style.display = 'none'
    document.getElementById('ads-1').innerHTML = '<a href="" onclick="return switchAds()"><img src="ads-replacement.gif" alt=""></a>'
  } else {
    document.getElementById('no-ads').style.display = document.getElementById('ads-2').style.display = ''
    document.getElementById('ads-1').innerHTML = ad
    ad = null
  }
  return false
}

function ie6() {
  alert('The web browser that you are using is too old and cannot render this page properly.\nWe will transfer you to a similar page, that your browser can probably display.')
  window.location='http://en.wikipedia.org/wiki/Jyllands-Posten_Muhammad_cartoons'
}
