function checkPress(e, theForm){
	if (e.keyCode == 10 || e.keyCode == 13){
		theForm.submit();
	}
}

