// Switching layers
var initialZ = 8
function topLayer(copyNo) {
  initialZ++;
  //document.all[copyNo].style.zIndex = initialZ; //IE only
  document.getElementById(copyNo).style.zIndex = initialZ;
}