<script type="text/javascript">
window.document.onkeypress = function() {
if(event.keyCode == 13 &&
event.srcElement.tagName.toUpperCase() == "INPUT" &&
event.srcElement.type == "text") {
alert(event.cacelBubble);
event.cancelBubble = true;
event.returnValue = false;
}
}