	/**********************************************************************************
	 Flash 파일 추가 스크립트 
    ***********************************************************************************/
	function loadFlash(filename,width,height,oMenu,oWmode)
	{	
		
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ width +'" height="'+ height +'">'); 
		document.write('<param name="movie" value="'+ filename +'"><param name="quality" value="high">');

		if(oMenu)
			document.write('<param name="menu" value="false">');
		if(oWmode)
		{
			document.write('<PARAM NAME=wmode VALUE=transparent>'); 
			document.write('<embed src="'+ filename +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+ width +'" height="'+ height +'"></embed></object>');
		}
	}



    /*-------------------------------------------------------------------------
        Opener 이동후 팝업창 종료 
	  -------------------------------------------------------------------------*/
	function CloseNgoURL(URL) {
		opener.location = URL;
		self.close();
	}

    /*-------------------------------------------------------------------------
        Opener 이동후 팝업창 종료 
	  -------------------------------------------------------------------------*/
	function CloseNgoURL2(URL) {
		var targ_Win = self.opener
		if ( typeof(targ_Win) == "object" ) {
			targ_Win = ( typeof(targ_Win.top.main) == "object" ? targ_Win.top.main : targ_Win.top );
			targ_Win.location.href = URL;
		}
		self.close();
	}

