// JavaScript Document
$(document).ready(function(){$('#msg').focus(function(){$(this).addClass('focus');}).blur(function(){$(this).removeClass('focus');});});document.onkeydown=NavigateThrough;function NavigateThrough(event){if(!document.getElementById || $('#msg').is('.focus'))return;if(window.event)event=window.event;if(event.ctrlKey){var link=null;var href=null;switch(event.keyCode?event.keyCode:event.which?event.which:null){case 0x25:link=document.getElementById('backbut');break;case 0x27:link=document.getElementById('nextbut');break;case 0x26:}if(link&&link.href)document.location=link.href;if(href)document.location=href}}

