function showLAYER0(layName){
  if(document.layers) {
    if (document.layers[layName]) document.layers[layName].visibility='show' 
  }
  if(document.all) {
    if(document.all(layName)) document.all(layName).style.visibility='visible'
  }
}
function hideLAYER0(layName){
  if(document.layers) {
    if (document.layers[layName]) document.layers[layName].visibility='hide' 
  }
  if(document.all) {
    if(document.all(layName)) document.all(layName).style.visibility='hidden'
  }
}
function tick0(){
  hideLAYER0('LinkFr0')
  hideLAYER0('New00')
  showLAYER0('New01')
  hideLAYER0('New10')
  showLAYER0('New11')
  hideLAYER0('New20')
  showLAYER0('New21')
  hideLAYER0('New30')
  showLAYER0('New31')
  hideLAYER0('New40')
  showLAYER0('New41')
  hideLAYER0('New50')
  showLAYER0('New51')
}
function tick1(){
  showLAYER0('LinkFr0')
  hideLAYER0('New01')
  showLAYER0('New00')
  hideLAYER0('New11')
  showLAYER0('New10')
  hideLAYER0('New21')
  showLAYER0('New20')
  hideLAYER0('New31')
  showLAYER0('New30')
  hideLAYER0('New41')
  showLAYER0('New40')
  hideLAYER0('New51')
  showLAYER0('New50')
}
