//This is a script to disable IE's nasty form breaking "Enter" issue
//http://www.cs.tut.fi/~jkorpela/forms/enter.html

function noenter() {
  return !(window.event && window.event.keyCode == 13); }