//==============================================================================
// 1. ±â   ´É   ¸í : À©µµ¿ìÃ¢ °øÅëÇÔ¼ö
// 2. ÀÛ   ¼º   ÀÚ : °í¼ºÈÆ
// 3. ÀÛ ¼º  ÀÏ ÀÚ : 2010.02.07
// 4. ÃÖ ±Ù º¯°æÀÏ : 
// 8. ¶ó ÀÌ ¼¾ ½º  : All right reserved , ¼Ò½º¸¦ ¼öÁ¤ÇÏÁö ¸¶¼¼¿ä.
//                   
//==============================================================================

/* 
    È­¸é»çÀÌÆ®Á¶Á¤¹× Áß¾ÓÁ¤·Ä(À©µµ¿ìÀÇ ÇüÅÂ¿¡ µû¶ó Â÷ÀÌ¹ß»ýÇÔ)
    @param  nWidthSize      ÆøÅ©±â
    @param  nHeightSize     ³ôÀÌÅ©±â
*/
function fncWinResize(nWidthSize,nHeightSize)   
{
    var nWinLeftPos,nWinTopPos;
    var nHeightSize,nWidthSize
    
    nWinLeftPos	= Math.round((screen.availWidth/2)-(nWidthSize/2)) ;
    nWinTopPos	= Math.round((screen.availHeight/2)-(nHeightSize/2)) ;
    
//À©µµ¿ì°íÀüÇüÅÂ
//    nHeightSize=nHeightSize+51;
//    nWidthSize =nWidthSize +12;

//Å×¸¶°¡ÀÖ´Â°æ¿ì
    nHeightSize=nHeightSize+51;
    nWidthSize =nWidthSize +12;

   try {
       top.window.resizeTo(nWidthSize,nHeightSize);
       top.window.moveTo(nWinLeftPos,nWinTopPos);
   } catch(e) {
   }   
}  

/* »õÀ©µµ¿ì */
function fncNewWindow(lnkURL,targetName,nWidth,nHeight)
{
    var gWinheight= 0;
   // nHeight=nHeight+15;
	var nWinLeftPos	= Math.round((screen.availWidth/2)-(nWidth/2)) ;
    var nWinTopPos	= Math.round((screen.availHeight/2)-(nHeight/2)) ;
    var gDialogsize = "width="+nWidth+",height="+nHeight+",left="+ nWinLeftPos+",top="+nWinTopPos
    var winopen = window.open(lnkURL,targetName,"status=yes,toolbar=no,menubar=no,location=no,resizable=1,"+gDialogsize,true);   
    if (winopen==null) {
        alert("À©µµ¿ìXP¸¦ ÀÌ¿ëÇÏ¿© Á¢¼ÓÇÏ½Ã´Â ºÐ²²¼­´Â ÆË¾÷Â÷´ÜÀ» ÇØÁ¦ÇÏ¿© ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.\r\n\r\nÆË¾÷Â÷´ÜÇØÁ¦¸¦ ÇÑ´Ù¸é Á¤»óÀûÀ¸·Î ÀÌ ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\r\n\r\nÈ­¸éÀ§ÂÊ¿¡ ÀÖ´Â ÆË¾÷Â÷´Ü¾È³»¸¦ ´­·¯ [ÇöÀç»çÀÌÆ®¸¦ Ç×»óÇã¿ë]À¸·Î ¼³Á¤ÇØ ÁÖ¼¼¿ä.");
    } else {    
        winopen.focus();
    }
}

/* »õÀ©µµ¿ìdownload */
function fncNewWindowDown(lnkURL)
{
    popWindow = window.open(lnkURL,"down","status=no,toolbar=no,menubar=no,location=no,resizable=0,width=50,height=50,left=900,top=550",true);   
    if (popWindow==null) {
        alert("À©µµ¿ìXP¸¦ ÀÌ¿ëÇÏ¿© Á¢¼ÓÇÏ½Ã´Â ºÐ²²¼­´Â ÆË¾÷Â÷´ÜÀ» ÇØÁ¦ÇÏ¿© ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.\r\n\r\nÆË¾÷Â÷´ÜÇØÁ¦¸¦ ÇÑ´Ù¸é Á¤»óÀûÀ¸·Î ÀÌ ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\r\n\r\nÈ­¸éÀ§ÂÊ¿¡ ÀÖ´Â ÆË¾÷Â÷´Ü¾È³»¸¦ ´­·¯ [ÇöÀç»çÀÌÆ®¸¦ Ç×»óÇã¿ë]À¸·Î ¼³Á¤ÇØ ÁÖ¼¼¿ä.");
    } else {    
        popWindow.focus();
    }
}

/* »õÀ©µµ¿ì */
function fncNewWindowPos0(lnkURL,targetName,nWidth,nHeight)
{
    var gWinheight= 0;
    var gDialogsize = "width="+nWidth+",height="+nHeight+",left=0,top=0";
    var winopen = window.open(lnkURL,targetName,"status=yes,toolbar=no,menubar=no,location=no,resizable=1,"+gDialogsize,true);   
    if (winopen==null) {
        alert("À©µµ¿ìXP¸¦ ÀÌ¿ëÇÏ¿© Á¢¼ÓÇÏ½Ã´Â ºÐ²²¼­´Â ÆË¾÷Â÷´ÜÀ» ÇØÁ¦ÇÏ¿© ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.\r\n\r\nÆË¾÷Â÷´ÜÇØÁ¦¸¦ ÇÑ´Ù¸é Á¤»óÀûÀ¸·Î ÀÌ ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\r\n\r\nÈ­¸éÀ§ÂÊ¿¡ ÀÖ´Â ÆË¾÷Â÷´Ü¾È³»¸¦ ´­·¯ [ÇöÀç»çÀÌÆ®¸¦ Ç×»óÇã¿ë]À¸·Î ¼³Á¤ÇØ ÁÖ¼¼¿ä.");
    } else {    
        winopen.focus();
    }
}

/* »õÀ©µµ¿ì(½ºÅ©·Ñ) */
function fncNewWindowScroll(lnkURL,targetName,nWidth,nHeight)
{
    nHeight=nHeight+15;
    var gWinheight= 0;
    var nWinLeftPos = ((screen.availWidth/2)-(nWidth/2)) ;
    var nWinTopPos  = ((screen.availHeight/2)-(nHeight/2)) ;

    var gDialogsize = "width="+nWidth+",height="+nHeight+",left=" + nWinLeftPos+",top="+nWinTopPos
    var winopen = window.open(lnkURL,targetName,"status=yes,toolbar=no,menubar=no,scrollbars=yes,location=no,resizable=yes,"+gDialogsize,true);   
    if (winopen==null) {
        alert("À©µµ¿ìXP¸¦ ÀÌ¿ëÇÏ¿© Á¢¼ÓÇÏ½Ã´Â ºÐ²²¼­´Â ÆË¾÷Â÷´ÜÀ» ÇØÁ¦ÇÏ¿© ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.\r\n\r\nÆË¾÷Â÷´ÜÇØÁ¦¸¦ ÇÑ´Ù¸é Á¤»óÀûÀ¸·Î ÀÌ ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\r\n\r\nÈ­¸éÀ§ÂÊ¿¡ ÀÖ´Â ÆË¾÷Â÷´Ü¾È³»¸¦ ´­·¯ [ÇöÀç»çÀÌÆ®¸¦ Ç×»óÇã¿ë]À¸·Î ¼³Á¤ÇØ ÁÖ¼¼¿ä.");
    } else {    
        winopen.focus();
    }
}

/* »õÀ©µµ¿ì */
function fncNewWindow01(lnkURL,targetName,nWidth,nHeight)
{
    var gWinheight= 0;
    nHeight=nHeight+15;
    var nWinLeftPos = ((screen.availWidth/2)-(nWidth/2)) ;
    var nWinTopPos  = ((screen.availHeight/2)-(nHeight/2)) ;

    var gDialogsize = "width="+nWidth+",height="+nHeight+",left="+ nWinLeftPos+",top="+nWinTopPos
    var winopen = window.open(lnkURL,targetName,"status=yes,toolbar=no,menubar=no,scrollbars=no,location=no,resizable=yes,"+gDialogsize,true);   
    if (winopen==null) {
        alert("À©µµ¿ìXP¸¦ ÀÌ¿ëÇÏ¿© Á¢¼ÓÇÏ½Ã´Â ºÐ²²¼­´Â ÆË¾÷Â÷´ÜÀ» ÇØÁ¦ÇÏ¿© ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.\r\n\r\nÆË¾÷Â÷´ÜÇØÁ¦¸¦ ÇÑ´Ù¸é Á¤»óÀûÀ¸·Î ÀÌ ¼­ºñ½º¸¦ ÀÌ¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.\r\n\r\nÈ­¸éÀ§ÂÊ¿¡ ÀÖ´Â ÆË¾÷Â÷´Ü¾È³»¸¦ ´­·¯ [ÇöÀç»çÀÌÆ®¸¦ Ç×»óÇã¿ë]À¸·Î ¼³Á¤ÇØ ÁÖ¼¼¿ä.");
    } else {    
        winopen.focus();
    }
}


//¸ð´Þ¸Þ½ÃÁöÈ­¸é
function fncMsgShow(msgID,btnType,n1,n2,n3) {

	if (msgID==0) return;
	var style 	= "dialogWidth:370px; dialogHeight:210px; center:yes;status:no;scroll:no;resizable:no;"
	var msgURL 	= "../common/tgac_init.jsp?msgID=" + msgID  + "&btnType=" + btnType + "&n1=" + n1 + "&n2=" + n2 + "&n3=" + n3;
//	var msg 	= new Array();
//	msg[0] 		= msgID ;
//	msg[1] 		= btnType;
    var szName = window.showModalDialog (msgURL,"", style );
    return szName;
}

//¸ð´ÞÀ§ÀÇ ¸Þ½ÃÁöÈ­¸é
function f_showMsgModal(msgID,btnType,n1,n2,n3) {
	
	if (msgID==0) return;
	var style 	= "dialogWidth:405px; dialogHeight:266px; center:yes;status:no;scroll:no;resizable:no;"
	var msgURL 	= "../common/tgac_init.jsp?msgID=" + msgID  + "&btnType=" + btnType + "&n1=" + n1 + "&n2=" + n2 + "&n3=" + n3;
	var msg 	= new Array();
	msg[0] 		= msgID ;
	msg[1] 		= btnType;
    var szName = parent.window.showModalDialog (msgURL,msg, style );
    return szName;
}
