    var popup;

    function winPop( url			// ÆË¾÷½ÃÅ³ ÆÄÀÏÀ» °æ·Î±îÁö ÁÜ
    	            ,param			// ÆÄ¶ó¸ÞÅÍ &a=a&b=b 
					,scroll         // ½ºÅ©·Ñ
					,flag           // ÆË¾÷½Ã ±¸º°À» ÁÖ±âÀ§ÇÑ °ª
					,left           // ÆË¾÷½Ã left°ª( default : 0 )
                    ,width			// ÆË¾÷Ã¢ Æø   ( default : 700 )
					,height ) {		// ÆË¾÷Ã¢ ±æÀÌ ( default : 500 )
        
        if ( left   == null || left   == "" ) { left   = 0;    }      // left°ª      ( default : 0   )
        if ( width  == null || width  == "" ) { width  = 700;  }      // ÆË¾÷Ã¢ Æø   ( default : 700 )
        if ( height == null || height == "" ) { height = 500;  }      // ÆË¾÷Ã¢ ±æÀÌ ( default : 500 )
        if ( scroll == null || scroll == "" ) { scroll = "no"; }
        if ( popup != null ) {

            popup.close();
        }
        
        popUrl  = url + "?flag="   + flag
				      + param
		var windowOption  = " scrollbars=" + scroll;
            windowOption += ",toolbar=0";
            windowOption += ",location=0";
            windowOption += ",directories=0";
            windowOption += ",status=1";
            windowOption += ",menubar=0";
            windowOption += ",resizable=0";
            windowOption += ",top=0";
            windowOption += ",left="   + left;
            windowOption += ",width="  + width;
            windowOption += ",height=" + height;
            
        popup = window.open( popUrl ,"1" ,windowOption);

    }

 
 
 /*   var popup;

    function winPop( url			// ÆË¾÷½ÃÅ³ ÆÄÀÏÀ» °æ·Î±îÁö ÁÜ 
		            ,param			// ÆÄ¶ó¸ÞÅÍ &a=a&b=b 
					,flag           // ÆË¾÷½Ã ±¸º°À» ÁÖ±âÀ§ÇÑ °ª
					,left           // ÆË¾÷½Ã left°ª( default : 0 )
                    ,width			// ÆË¾÷Ã¢ Æø   ( default : 700 )
					,height ) {		// ÆË¾÷Ã¢ ±æÀÌ ( default : 500 )
        
        if ( left   == null || left   == "" ) { left   = 0;   }      // left°ª      ( default : 0   )
        if ( width  == null || width  == "" ) { width  = 700; }      // ÆË¾÷Ã¢ Æø   ( default : 700 )
        if ( height == null || height == "" ) { height = 500; }      // ÆË¾÷Ã¢ ±æÀÌ ( default : 500 )
        
        if ( popup != null ) {

            popup.close();
        }
        
        popUrl  = url + "?flag="   + flag
				      + "&left="   + left
                      + "&width="  + width
				      + "&height=" + height
                      + param
		var windowOption  = " scrollbars=no";
            windowOption += ",toolbar=0";
            windowOption += ",location=0";
            windowOption += ",directories=0";
            windowOption += ",status=1";
            windowOption += ",menubar=0";
            windowOption += ",resizable=0";
            windowOption += ",top=0";
            windowOption += ",left="   + left;
            windowOption += ",width="  + width;
            windowOption += ",height=" + height;
            
        popup = window.open( popUrl ,"1" ,windowOption);

    } */

	function winPop2( url           // ÆË¾÷½ÃÅ³ URL(ÆÄ¶ó¸ÞÅÍ Æ÷ÇÔ)
					 ,winName       // ÆË¾÷Ã¢ ÀÌ¸§  ( default : "" )
                     ,scroll        // ½ºÅ©·Ñ »ç¿ë¿©ºÎ
					 ,top           // ÆË¾÷½Ã top°ª ( default : 0 )
                     ,left          // ÆË¾÷½Ã left°ª( default : 0 )
                     ,width         // ÆË¾÷Ã¢ Æø    ( default : 700 )
                     ,height ) {    // ÆË¾÷Ã¢ ±æÀÌ  ( default : 500 )

        if ( winName == null || winName == "" ) { winName = "";   }      // winName     ( default : ""  )
        if ( top     == null || top     == "" ) { top     = 0;    }      // left°ª      ( default : 0   )
        if ( left    == null || left    == "" ) { left    = 0;    }      // left°ª      ( default : 0   )
		if ( width   == null || width   == "" ) { width   = 700;  }      // ÆË¾÷Ã¢ Æø   ( default : 700 )
        if ( height  == null || height  == "" ) { height  = 500;  }      // ÆË¾÷Ã¢ ±æÀÌ ( default : 500 )
        if ( scroll  == null || scroll  == "" ) { scroll  = "no"; }
        
        var windowOption  = " scrollbars=" + scroll;
            windowOption += ",toolbar=0";
            windowOption += ",location=0";
            windowOption += ",directories=0";
            windowOption += ",status=1";
            windowOption += ",menubar=0";
            windowOption += ",resizable=0";
            windowOption += ",top=0"   + top;
            windowOption += ",left="   + left;
            windowOption += ",width="  + width;
            windowOption += ",height=" + height;
            
        window.open( url , winName , windowOption );

    }
