﻿function dontDoEnter()
{
	if (event.keyCode == 13)
	{
		// window.document.forms[0].submit();// funktioniert im Live System nicht
		return false;
	}
}