﻿document.frm.srch.focus();
document.getElementById('srch').onkeypress = function(e){
   if (!e) e = window.event;
	if([e.keyCode || e.which] == 13 ) //to allow enter key
	{
	  document.frm.submit();
	  e.keyCode=8;
	  return false;
	}  
}
