<!--
function KeyDown_Enter_BtnClick(e, btn)
{
	// process only the Enter key
	if (e.keyCode == 13)
	{
		// cancel the default submit
		e.returnValue    =    false;
		e.cancel        =    true;
 
		var obj = document.getElementById(btn);
		obj.click();
     } 
}
// -->
