var screenWidth = screen.width;
var popNum =0; //팝업 번호
var popQuantity =4; //팝업 총 량
var popLeft =5; //팝업 left 초기 셋팅
var popInterval = 420; //팝업 left 간격
var popTotalWidth = popQuantity * popInterval +popLeft ; //팝업 총 수량 * 팝업 left 간격 + 팝업 초기값
var popMinusLeft=0; //빼야 할 레프트값 변수 선언
if(screenWidth <= popTotalWidth ){ //해상도가 팝업 총 left 보다 작거나 같을 경우
popMinusLeft = (popTotalWidth-screenWidth) /(popQuantity-1); //(해상도 - 총 left 값) / (팝업 총 수량 -1)
}
if ( getCookie('open2') != 'done' ) {
popNum++;
noticeWindow1 = window.open('../popup/popup_140113.html','open2','width=400,height=470,top=5,left=5');
noticeWindow1.opener = self;
}
if ( getCookie('open1') != 'done' ){
popLeft = popLeft + popInterval - popMinusLeft; //팝업 left 좌표 = 기존 left + 팝업 left 간격(크기) - 빼야할 값
popNum++;
//noticeWindow1 = window.open('../popup/popup_131211.html','open1','width=400,height=470,top=5,left=425');
noticeWindow1 = eval("window.open('../popup/popup_131211.html','open1','width=400,height=470,top=5,left="+popLeft+"');")
noticeWindow1.opener = self;
}
if ( getCookie('open4') != 'done' ){
popLeft = popLeft + popInterval -popMinusLeft;
popNum++;
//var noticeWindow3 = window.open('../popup/popup_140303.html','open4','width=400,height=470,top=5, left=845');
var noticeWindow3 =eval("window.open('../popup/popup_140303.html','open4','width=400,height=470,top=5, left="+popLeft+"');");
noticeWindow3.opener = self;
}
//팝업 순서에 맞게 각각 left 값이 (-) 되어 적용된다.
//현재 팝업 총량, 팝업 left 간격(width+@), 첫 팝업의 left 는 수동으로 해야 한다.
//DB를 읽어와서 하는 형태가 아니므로 한계가 있는 것 같다. 더 보완 하도록!