<!--
//light switch
function lightSwitch(command){
  if(command)
    document.getElementById('blackout').style.display='';
  else
    document.getElementById('blackout').style.display='none';
}
// -->
