<!--

var NS = (window.Event) ? 1 : 0;

function checkKey(e) {
  var code = (NS) ? e.which : event.keyCode;
  var key = String.fromCharCode(code);
  for (var i = 0; i < ar.length; i++) {
    if (key == ar[i].key) location.href = ar[i].url;
  }
}

function hotKey(key, url) {
  this.key = key;
  this.url = url;
}

if (NS) document.captureEvents(Event.KEYPRESS)
document.onkeypress = checkKey;

var ar = new Array();

ar[ar.length] = new hotKey("1", "http://www.gnomo.org/tvclip3.html");
ar[ar.length] = new hotKey("2", "http://www.gnomo.org/tvclip2.html");
ar[ar.length] = new hotKey("3", "http://www.gnomo.org/tvclip1.html");
ar[ar.length] = new hotKey("4", "http://www.gnomo.org/tvclip4.html");
ar[ar.length] = new hotKey("5", "http://www.gnomo.org/tvclip5.html");
ar[ar.length] = new hotKey("6", "http://www.gnomo.org/tvclip6.html");
ar[ar.length] = new hotKey("7", "http://www.gnomo.org/tvclip7.html");
ar[ar.length] = new hotKey("7", "http://www.gnomo.org/webradio.html");
ar[ar.length] = new hotKey("s", "http://www.gnomo.org/offtv.html");
ar[ar.length] = new hotKey("S", "http://www.gnomo.org/offtv.html");
ar[ar.length] = new hotKey("r", "http://www.gnomo.org/webradio.html");
ar[ar.length] = new hotKey("S", "http://www.gnomo.org/webradio.html"); 
ar[ar.length] = new hotKey("c", "http://www.gnomo.org/camonline1.html");
ar[ar.length] = new hotKey("C", "http://www.gnomo.org/camonline1.html");
// -->