
function KeyDownHandler(evnt,btn)
{
	// process only the Enter key
	if (evnt.keyCode == 13)
	{
		// cancel the default submit
		 evnt.returnValue=false;
		 evnt.cancel = true;
		// submit the form by programmatically clicking the specified button
		__doPostBack(btn,'')
	}
}

