function openflash(width,height,src){ 
    return "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width="+width+" height="+height+"><param name=\"allowScriptAccess\" value=\"always\" /><param name=\"movie\" value=\""+src+"\"><param name=\"quality\" value=\"high\"><param name=\"wmode\" value=\"transparent\"><embed src=\""+src+"\" quality=\"high\" wmode=\"transparent\"  pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" allowScriptAccess=\"always\"  width="+width+" height="+height+"></embed></object>"; 
} 

function writeflash(src){ 
    document.write(src); 
}

//function enter_site() { 
//mywidth = 760; 
//myheight = 400; 
//myleft = (screen.width - mywidth) / 2; 
//mytop = (screen.height - myheight) / 2; 
//window.open('http://kr.ibtimes.com/azdv/lion.htm', 'eaxis', 'width='+mywidth+',height='+myheight+', 
//scrollbars=0,resizable=0,menubar=0,toolbar=0,status=0,location=0, 
//directories=0,left='+myleft+',top='+mytop); 
//} 


function fo(){
window.focus();
}

function closediv(DIV){
	document.getElementById(DIV).style.display='none';
}

function closeFlashWindow1(ID,DIV,TIME){
	closeWin(ID,TIME);
}

function getCookie( name ){
        var nameOfCookie = name + "=";
        var x = 0;
        while ( x <= document.cookie.length ){
            var y = (x+nameOfCookie.length);
            if( document.cookie.substring( x, y ) == nameOfCookie ) {
                if( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 )
                    endOfCookie = document.cookie.length;
                return unescape( document.cookie.substring( y, endOfCookie ) );
            }
            x = document.cookie.indexOf( " ", x ) + 1;
            if( x == 0 )
                break;
        }
        return "";
    }
function pop(CID)
	{
		if(!CID) return;
        if(getCookie( CID ) != "done")
			{
				if(!document.getElementById(CID)) return;
			   document.getElementById(CID).style.display = 'block' ;  //eval(CID+".style.display = 'block'");    //°°Àº ±â´É
			}
    }
function pop10(CID){    
	document.getElementById(CID).style.display = 'block' ;  //eval(CID+".style.display = 'block'");    //°°Àº ±â´É
	   }
//ÄíÅ° ÃÊ ´ÜÀ§ÀüÈ¯
function setCookieTime(name, value, mSecond) {
    var today  = new Date();
    var expire = new Date(today.getTime() + mSecond);
    window.document.cookie = name + "=" + escape(value) + ((expire) ? ";path=/; expires=" + expire.toGMTString() : "");
}

function setCookie(name, value, TIME) {
	setCookieTime(name, value, TIME*1000*60); //ÇöÁ¦ *1000 À¸·Î ¼ýÀÚ 1Àº 1ÃÊ¸¦ ÀÇ¹ÌÇÔ Kim jaemo 
}
function closeWin(CID,MIN)
	{
		setCookie( CID, "done" , MIN); //ÄíÅ°³×ÀÓ¼ÂÆÃ 
		document.getElementById(CID).style.display = 'none';
	}
function closeWin2(CID,MIN)
	{
		setCookie( CID, "done" , MIN); //ÄíÅ°³×ÀÓ¼ÂÆÃ 
	}
