// JavaScript Document
var adblock=new Array()
adblock[0]='<a href="https://www.midcounties.coop/join-us/" target="_blank" title="The co-operative membership - join us"><img src="images/join-us-panel.gif" class="imgBorder" alt="The co-operative membership - join us"></a>'

adblock[1]='<a href="https://www.midcounties.coop/members/" target="_blank" title="The co-operative membership - log in"><img src="images/log-in-panel.gif" class="imgBorder" alt="The co-operative membership - log in"></a>'

adblock[2]='<a href="arranging-a-funeral.html" target="_self" title="Your guide to arranging a funeral"><img src="images/arranging-panel.gif" class="imgBorder" alt="Your guide to arranging a funeral"></a>'

adblock[3]='<a href="writing-a-eulogy.html" target="_self" title="How to write a Eulogy"><img src="images/eulogy-panel.gif" class="imgBorder" alt="How to write a Eulogy"></a>'

adblock[4]='<a href="floral-tribute.html" target="_self" title="Floral Tribute Collection"><img src="images/floral-panel.gif" class="imgBorder" alt="Floral Tribute Collection"></a>'

adblock[5]='<a href="personalise-a-funeral.html" target="_self" title="Personalising a funeral"><img src="images/personalise-panel.gif" class="imgBorder" alt="Personalising a funeral"></a>'

adblock[6]='<a href="http://www.coopfunerals.coop/memorials.html" target="_self" title="Choosing a Memorial"><img src="images/memorial-panel.gif" class="imgBorder" alt="Choosing a Memorial"></a>'

adblock[7]='<a href="planning-ahead.html" target="_self" title="Pre Paid Funeral Plans"><img src="images/prepaid-panel.gif" class="imgBorder" alt="Pre Paid Funeral Plans"></a>'

adblock[8]='<a href="brochure/memorial-brochure.html" target="_blank" title="Memorial Masonry Brochure"><img src="images/brochure-panel.gif" class="imgBorder" alt="Memorial Masonry Brochure"></a>'

adblock[9]='<a href="pdf/coop-legal.pdf" target="_blank" title="The co-operative leagal services"><img src="images/legal-panel.gif" class="imgBorder" alt="The co-operative leagal services"></a>'


function randomorder(targetarray, spacing) {
  var randomorder=new Array()
  var the_one
  var z=6		//the amount of ads to be hidden from the total amount of ads in rotation
  for (i=0;i<targetarray.length;i++)
  randomorder[i]=i

  while (z<targetarray.length) {
    the_one=Math.floor(Math.random()*targetarray.length)
    if (targetarray[the_one]!="_selected!"){
      document.write(targetarray[the_one]+spacing)
      targetarray[the_one]="_selected!"
      z++
    }
  }
}

//The value of the "z" variable is very important. If you have 20 ads but only want to display 4 ads at a time, you would change the value of the "z" variable to "z=16" (without the quotes). This means that out of 20 ads, 16 will be hidden.