function submitOnEnter(form){
	if (event.keyCode==13){
		form.submit();
	}
}

