/*
var winname_1;
var openF = 0;
function popup2(fileName, intWidth, intHeight, intLeft, intTop, vScrollbars, vResizable, vStatus){
        today = new Date();
        winName = today.getTime();

        var fileName, intWidth, intHeight;
        var screenWidth = screen.availwidth;
        var screenHeight = screen.availheight;

		 if(intHeight >= screenHeight)
		{
                intHeight = screenHeight - 50;
                vScrollbars = 1;
				intTop=0;
				intWidth=eval(intWidth)+18;
        }
        if(intWidth >= screenWidth)
		{
                intWidth = screenWidth - 40;
                vScrollbars = 1;
				intTop=0;
        }

        if(intLeft =="auto" || intTop =="auto")
		{
                var intLeft = (screenWidth - intWidth) / 2;
				if(intTop!=0)
				{
	                var intTop = (screenHeight - intHeight) / 2;
				}
        }
        var features = eval("'width=" + intWidth + ",height=" + intHeight + ",left=" + intLeft + ",top=" + intTop + ",scrollbars=" + vScrollbars + ",resizable=" + vResizable + ",status=" + vStatus + "'");
        if(openF == 1){
                if(winname_1.closed){
                        winname_1 = window.open(fileName,winName,features);
                }else{
                        winname_1.close();
                        winname_1 = window.open(fileName,winName,features);
                }
        }else{
                winname_1 = window.open(fileName,winName,features);
                openF = 1;
        }
        winname_1.focus();
}
if( GetCookie("Gpop0") != "done" ){
	popup2('http://www.koreanair.com/etc/popup/mileage/inform_20071212_tch.htm','527','625','auto','auto','0','0','0');
}
*/