
function isEnterKeyPressed(e)
{
	var whichCode = (window.Event) ? e.which : e.keyCode;
	return (whichCode==13);
}