<!--
	bName = navigator.appName;
	bVer = parseInt(navigator.appVersion);
	if (bName == "Netscape" && bVer >= 4){
		document.captureEvents(Event.KEYPRESS);
		document.onKeyPress = GetPart;
	}
	function GetPart(e){
		if (e.which == 13)
				document.forms[0].submit();	
		}
//-->