var PW_popupWin = null;
var PW_popupWin2 = null;
var PW_popupWin3 = null; 

/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
 */
var PW_showWin = function(vUrl, vWidth, vHeight, vTop, vLeft, vScroll) 
{ 
	if ( vLeft == "center" ) {
		vLeft = (document.body.clientWidth/2) - (vWidth/2);
	}
	if ( vTop == "center" ) {	
		vTop = (document.body.clientHeight/2) - (vHeight/2);	
	}

    if( PW_popupWin != null ) 
    { 
        PW_popupWin.close(); 
        PW_popupWin = null; 
    } 
    
    PW_popupWin = window.open(vUrl, "PW_popupWin", "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+""); 
}

/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.(ÆË¾÷ À§Ä¡ º¯°æ ) by nh 080819
 */
var PW_showWin2 = function(vUrl, vWidth, vHeight, vTop, vLeft, vScroll) 
{ 

    if( PW_popupWin2 != null ) 
    { 
        PW_popupWin2.close(); 
        PW_popupWin2 = null; 
    } 
    
    PW_popupWin2 = window.open(vUrl, "PW_popupWin2", "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+""); 
}

var PW_showWin3 = function(vUrl, vWidth, vHeight, vTop, vLeft, vScroll) 
{ 
	if ( vLeft == "center" ) {
		vLeft = (document.body.clientWidth/2) - (vWidth/2);
	}
	if ( vTop == "center" ) {	
		vTop = (document.body.clientHeight/2) - (vHeight/2);	
	}

    if( PW_popupWin3 != null ) 
    { 
        PW_popupWin3.close(); 
        PW_popupWin3 = null; 
    } 
    
    PW_popupWin3 = window.open(vUrl, "PW_popupWin3", "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+""); 
}

var PW_showWinUnder = function(vUrl, vWidth, vHeight, vTop, vLeft, vScroll) 
{ 
	if ( vLeft == "center" ) {
		vLeft = (document.body.clientWidth/2) - (vWidth/2);
	}
	if ( vTop == "center" ) {	
		vTop = (document.body.clientHeight/2) - (vHeight/2);	
	}

    if( PW_popupWin != null ) 
    { 
        PW_popupWin.close(); 
        PW_popupWin = null; 
    } 
    
    PW_popupWin = window.open(vUrl, "PW_showWinUnder", "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+"").blur(); 
}
/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
 */
var PW_upderShowWin = function(vUrl, vWidth, vHeight, vTop, vLeft, vScroll) 
{ 
	if ( vLeft == "center" ) {
		vLeft = (document.body.clientWidth/2) - (vWidth/2);
	}
	if ( vTop == "center" ) {	
		vTop = (document.body.clientHeight/2) - (vHeight/2);	
	}

    if( PW_popupWin != null ) 
    { 
        PW_popupWin.close(); 
        PW_popupWin = null; 
    } 
    
    PW_popupWin = window.open(vUrl, "PW_popupWin", "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+""); 
}


/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
	»ç¿ë¹ý : PW_showWinSize("/popup/event.jsp", "400", "200");	
 */
var PW_showWinSize = function(vUrl, vWidth, vHeight) 
{ 
	PW_showWin(vUrl, vWidth, vHeight, 'center', 'center', 'no');
}


/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
	»ç¿ë¹ý : PW_showWinSizeScroll("/popup/event.jsp", "400", "200", "yes");	
 */
var PW_showWinSizeScroll = function(vUrl, vWidth, vHeight, vScoll) 
{ 
	PW_showWin(vUrl, vWidth, vHeight, 'center', 'center', vScoll);
}

/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
	ÆË¾÷ ÆäÀÌÁö Á¦ÀÏ ÇÏ´Ü¿¡ PopupResize.js ¸¦ Ãß°¡ÇØ¾ß ÇÑ´Ù.
	»ç¿ë¹ý : PW_showWinPosition("/popup/event.jsp", "0", "0", "no");	
 */
var PW_showWinPosition = function(vUrl, vTop, vLeft, vScroll) 
{ 
	PW_showWin(vUrl, '100', '100', vTop, vLeft, vScroll);
}

/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
	ÆË¾÷ ÆäÀÌÁö Á¦ÀÏ ÇÏ´Ü¿¡ PopupResize.js ¸¦ Ãß°¡ÇØ¾ß ÇÑ´Ù.
	ÆË¾÷ÀÇ À§Ä¡¸¦ ¼¾ÅÍ·Î ÇÑ´Ù.
	»ç¿ë¹ý : PW_showWinScroll("/popup/event.jsp", "no");	
 */
var PW_showWinScroll = function(vUrl, vScroll) 
{ 
	PW_showWin(vUrl, '100', '100', 'center', 'center', vScroll);
}

/**
	ÁÖ¾îÁø °æ·Î¸¦ ÆË¾÷ À©µµ¿ì·Î ¶ç¿î´Ù.
	ÆË¾÷ ÆäÀÌÁö Á¦ÀÏ ÇÏ´Ü¿¡ PopupResize.js ¸¦ Ãß°¡ÇØ¾ß ÇÑ´Ù.
	ÆË¾÷ÀÇ À§Ä¡¸¦ ¼¾ÅÍ·Î ÇÑ´Ù.
	½ºÅ©·Ñ¸¦ Ç¥½ÃÇÏÁö ¾Ê´Â´Ù.	
	»ç¿ë¹ý : PW_showWinAuto("/popup/event.jsp");		
 */
var PW_showWinAuto = function(vUrl) 
{ 
	PW_showWin(vUrl, '100', '100', 'center', 'center', 'no');
}

/**
	ÄíÅ°°ª ¹ÝÈ¯.
 */
var PW_mainPopup = function(vUrl, vCookieName, vCookieValue, vWidth, vHeight, vTop, vLeft, vScroll) 
{
	if ( PW_getCookie(vCookieName) != vCookieValue ) {
		if ( vLeft == "center" ) {
			vLeft = (document.body.clientWidth/2) - (vWidth/2);
		}
		if ( vTop == "center" ) {	
			vTop = (document.body.clientHeight/2) - (vHeight/2);	
		}
		
		window.open(vUrl, vCookieName, "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+""); 
	}
}

/**
	ÄíÅ°°ª ¹ÝÈ¯.
 */
var PW_mainUnderPopup = function(vUrl, vCookieName, vCookieValue, vWidth, vHeight, vTop, vLeft, vScroll) 
{
	if ( PW_getCookie(vCookieName) != vCookieValue ) {
		if ( vLeft == "center" ) {
			vLeft = (document.body.clientWidth/2) - (vWidth/2);
		}
		if ( vTop == "center" ) {	
			vTop = (document.body.clientHeight/2) - (vHeight/2);	
		}
		
		window.open(vUrl, vCookieName, "scrollbars="+vScroll+",status=no,width="+vWidth+" height="+vHeight+" top="+vTop+" left="+vLeft+"").blur(); 
	}
}
/**
	ÄíÅ°°ª ¹ÝÈ¯.
 */
function PW_getCookie(ckName) 
{ 
    var search = ckName + "="; 
    if (document.cookie.length > 0) { 
        offset = document.cookie.indexOf(search); 
        if (offset != -1) { 
            offset += search.length;
            end = document.cookie.indexOf(";", offset); 
            if (end == -1) 
                end = document.cookie.length; 
            return unescape(document.cookie.substring(offset, end)); 
        } 
    } 
} 
