﻿document.onkeypress = disableEnter;
function disableEnter(e)
{
	if (!e) e = window.event;
	if (e && e.keyCode == 13)
	{
		// handle Enter key
		// return false; here to cancel the event
		return false;
	}
}