//<script language="javascript">
<!--
// define our "hotkey", use "Character Map" for other values.
var vHotKey=13; // EnterKey

// set up page to capture keypress events.
if (document.layers)
	document.captureEvents(Event.KEYPRESS);

// the following function tests which key was pressed
// and redirects to our destination if the key is valid.
function fCheckKey(e){
	if (document.layers){
		if (e.which==vHotKey && (e.target+' ').substring(1, 9)!='textarea')
			document.thisForm.SubmitBtn.click();
	}
	else if (document.all){
		if (event.keyCode==vHotKey && window.event.srcElement.type!='textarea')
			document.thisForm.SubmitBtn.click();
	}
}

// point keypress events to our function
document.onkeypress=fCheckKey;
document.thisForm.SubmitBtn.focus();
//-->