//****************************************************
// The following script tells the page to ignore the
// enter key.  This keeps the page from behaving
// unexpectedly when the user hits enter.  If you
// want something specific to occur when the user
// hits enter, you must change this function.
//****************************************************
	var ns = (!document.all) ? true : false
	var ie = (document.all) ? true : false
	var enterKey = 13;
	if (ie) {
		var DOMItem = "document.all";
	} else {
		var DOMItem = "document.forms[0]";
		window.captureEvents(Event.KEYPRESS);
	}
	document.onkeydown = keyPressed;
	
	function keyPressed(e){
		var n
		(ns) ? n=e.which : n=event.keyCode
		if (n==enterKey){
				return false;
		}
	}
