
function handleShortcutKeys(e){var e=e||window.event;var temp=e.keyCode||e.which||null;if((temp==83||temp==66)&&!gSearchBoxIsFocused){var sel=getSel();if(sel.toString().length>0){document.s.q.value=sel;};document.s.q.focus();document.s.q.select();return false;};return true;};function getSel(){if(window.getSelection){return window.getSelection();}else if(document.getSelection){return document.getSelection();}else if(document.selection){return document.selection.createRange().text;};return;};