function handleEnterKey(e, action) 
{
  var whichCode = (window.Event) ? e.which : e.keyCode;
  //window.alert(whichCode);
  if(whichCode == 13)
  {
	//eval(action);
	submitForm();
  }
}