MSIE = navigator.userAgent.indexOf("MSIE")!=-1 
function getKEYCODE(e)
{  
if(document.all)return  event.keyCode
else if(document.getElementById) 
return (e.keyCode!=0)?e.keyCode:e.charCode
else if(document.layers)   return  e.which
}
document.onkeypress = key_Press
if(document.layers)
document.captureEvents(Event.KEYPRESS);
self.focus();
function key_Press(e)
{
if(getKEYCODE(e) == 44 || getKEYCODE(e) == 65433)
{
location.href = left;
}
else if(getKEYCODE(e) == 46 || getKEYCODE(e) == 65416)
{
location.href = right;
}
}
function CopyToClipBoard()
{
  textRange = document.body.createTextRange();
  textRange.moveToElementText(document.all.linktotop);
  document.all.linktotop.focus();
  document.all.linktotop.select();
  textRange.execCommand("Copy");
}

