﻿// JScript File
function KeyPress()
{
	if(window.event.keyCode == 13)
	{
		window.event.keyCode = 0;
	}
}

 