      

  <!-- hide script from old browsers

   function selectBackgroundColor(value) {

    if (value == 'white') {
        window.document.colorselection.backgroundcolor[1].checked = false

        window.document.getElementById('table1').style.backgroundColor="#FFFFFF"
        window.document.getElementById('table2').style.backgroundColor="#FFFFFF"
    }
    else if (value == 'color') {
        window.document.colorselection.backgroundcolor[0].checked = false

        window.document.getElementById('table1').style.backgroundColor="#FFFFC0"
        window.document.getElementById('table2').style.backgroundColor="#C0FFC0"
    }
    
  }

 // end hiding script from old browsers -->






