	// Companion 적용을 위해 파일 인코딩을 반드시 UTF-8로 설정

	//엔터서브밋방지
	$(document).ready(function() {
		
		$(document).bind("keypress", function(e) {
			
			var e = e || window.event;
			
			if(e.keyCode==13) {
				
				var tagName = cfGetEventSource(e).tagName.toLowerCase();
				
				if(tagName=="input" || tagName=="select") {

					return false;
				}
			}
			
		});
	});