//
//      -- (C) Andrew Scott, 2006-2008
//	http://www.andrew-scott.co.uk/
//
function down(e) {var c=0; if (!e) e=window.event;
   document.getElementById("press").innerHTML="";
   if (e.keyCode) c=e.keyCode; else if (e.which) c=e.which;
   document.getElementById("down").innerHTML=c;if (c==8) return false;}
function press(e) { var c=0; if (!e) e=window.event;
   if (e.keyCode) c=e.keyCode; else if (e.which) c = e.which;
   document.getElementById("press").innerHTML=c; return false;}
function ky ( ) { cDiv=document.getElementById("ctable");
   cTab=document.createElement("table"); cBdy=document.createElement("tbody");
   r=document.createElement("tr"); c=document.createElement("td");
   c.style.fontWeight="bold"; c.innerHTML="onkeydown: "; r.appendChild(c);
   c=document.createElement("td"); c.width="50px"; c.bgColor="#ddddff";
   c.id="down"; c.style.textAlign="right";r.appendChild(c);cBdy.appendChild(r);
   r=document.createElement("tr"); c=document.createElement("td");
   c.style.fontWeight="bold"; c.innerHTML="onkeypress: "; r.appendChild(c);
   c=document.createElement("td"); c.width="50px"; c.bgColor="#ddddff";
   c.id="press";c.style.textAlign="right";r.appendChild(c);cBdy.appendChild(r);
   cTab.appendChild(cBdy); cDiv.appendChild(cTab); document.onkeydown=down;
   document.onkeypress=press; }

