var EventManager = Class.create();
EventManager.prototype = {
		
	initialize : function(){
		this.attachPath = "user/hssupp/event";
	},
	
	/* 페이징 처리 */ 
	changePage: function(pageNo){
		$('nowPageNo').value = pageNo;
		$('listForm').action="/user/hssupp/event/getListEvent.aff";
		$('listForm').submit();		
	},
	
	/* 목록개수 변경 */
	changePageSize : function(){
		$('nowPageNo').value = '1';

		$('listForm').action="/user/hssupp/event/getListEvent.aff";
		$('listForm').submit();
	},
	
	goViwe : function(event_idx){
		$('event_idx').value = event_idx;
		
		$('listForm').action="/user/hssupp/event/getViewEvent.aff";
		$('listForm').submit();
	}
	
};
