var welfarePVLanding = { pvEvent:function(pvSeq,eventValue){ // 이벤트 모드 랜딩 this.pvlanding(pvSeq); }, pvOrder:function(pvSeq,orderValue){ // 주문 모드 랜딩 this.pvlanding(pvSeq); }, pvGoods:function(pvSeq,goodsValue){ // 상품모드 랜딩 this.pvlanding(pvSeq); }, pvlanding:function(pvSeq){ alert('로그인이 필요합니다.'); location.href='/member/login'; } }