        var action_global = ""; //actionÀÇ Àü¿ªº¯¼ö
        var now = new Date();
        var now_year = now.getYear();
        var now_month = now.getMonth()+1;
        var now_day = now.getDate();

        function calendar(action){
                cal(now_year,now_month,now_day,action);
        }

        function cal(year, month, day, action){

        var i, j, day_num=1;
        var last_week, month_link="";
        var calDate = new Date(year, month-1, day_num);
        var checkDate = new Date();
        var date_array = new Array(6);
        for(i=0;i<6;i++) date_array[i] = new Array("","","","","","","");

        //½ºÅ©¸³Æ® ÃßÃâ ¹× º¯È¯, ³»¿ëÀÌ ¾øÀ¸¸é ¸¶Áö¸· action »ç¿ë
        if(action == ""){
                script = action_global;
        }else{
                var script = action;
                var action_mode = action.substring(0,3);
                if(action_mode.toLowerCase()=="url") script = "document.location.href='"+action.substring(4,action.length)+"'";
                action_global = script;
        }

        for(j=0;j<6;j++){
                for(i=0;i<7;i++){
                        if(j==0 && i==0)i = calDate.getDay();
                        date_array[j][i]=day_num+"";
                        day_num++;

                        //ÇØ´ç ³¯Â¥°ª¿¡ ´ëÇÑ À¯È¿¼º °Ë»ç
                        checkDate.setFullYear(year, month-1, day_num);
                        if(checkDate.getDate() != day_num) break;
                }
                if(checkDate.getDate() != day_num) break;
        }
        last_week = (date_array[5][0])?6:5;

        outStr = "<table bgcolor=#CCCCCC width=160 height=160 border=0 cellpadding=0 cellspacing=0 style='border:1 solid black'><tr><td>\n";
        outStr += "<table width=100% height=100% border=0 cellpadding=0 cellspacing=1 style='border:1 solid black'>\n";
        outStr += "<col width=20 align=center></col><col width=20 align=center></col><col width=20 align=center></col><col width=20 align=center></col><col width=20 align=center></col><col width=20 align=center></col><col width=20 align=center></col>\n";
        outStr += "<tr><td id='G_cal_td' class=calendar style='color:red'>S<td id='G_cal_td' class=calendar>M<td id='G_cal_td' class=calendar>T<td id='G_cal_td' class=calendar>W<td id='G_cal_td' class=calendar>T<td id='G_cal_td' class=calendar>F<td id='G_cal_td' class=calendar style='color:blue'>S</tr>\n";

        for(j=0;j<last_week;j++){
                outStr += "<tr>";
                for(i=0;i<7;i++){

                        //½ºÅ©¸³Æ® ÀÚ·áº¯È¯
                        if(date_array[j][i]!=""){
                                action_script = script.replace("{year}", year);
                                action_script = action_script.replace("{month}",(month < 10)?"0"+month:month);
                                action_script = action_script.replace("{day}", (date_array[j][i]<10)?"0"+date_array[j][i]:date_array[j][i]);
                        }
                        else action_script = "";
                        today=date_array[j][i];
                        thisday=date_array[j][i];

                        //¿À´ÃÀÌ¸é ÁøÇÏ°Ô
                        if(now_year==year && now_month==month && now_day==today) today="<b id='G_cal_td'>"+today+"</b>";

                        //³¯Â¥º°·Î ½ºÅ©¸³Æ® Ãâ·Â
                        if(now_year==year && now_month==month && now_day==thisday){ outStr += "<td id='G_cal_td' class=calendar style='color:white;cursor:hand;background-color:#999999' onMouseover=this.style.backgroundColor='gray' onMouseout=this.style.backgroundColor='#999999' onClick=\""+action_script+"\">"+today+"</td>";
                        }else{
                        if(i==0){ outStr += "<td id='G_cal_td' class=calendar style='color:red;cursor:hand' onMouseover=this.style.backgroundColor='#FFEEEE' onMouseout=this.style.backgroundColor='' onClick=\""+action_script+"\">"+today+"</td>"; continue; }
                        if(i==6){ outStr += "<td id='G_cal_td' class=calendar style='color:blue;cursor:hand' onMouseover=this.style.backgroundColor='#EEEEFF' onMouseout=this.style.backgroundColor='' onClick=\""+action_script+"\">"+today+"</td>"; continue; }

                        outStr += "<td id='G_cal_td' class=calendar style='cursor:hand' onMouseover=this.style.backgroundColor='#EEEEEE' onMouseout=this.style.backgroundColor='' onClick=\""+action_script+"\">"+today+"</td>";
                        }
                }
                outStr += "</tr>\n";
        }

        outStr += "</table></td></tr></table>";



        month_link = (month > 1)? "<a id='G_cal_td' onClick=\"cal("+year+","+(month-1)+","+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢¸</a> <font id='G_cal_td' color=black>"+month:"<a id='G_cal_td' onClick=\"cal("+(year-1)+",12,"+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢¸</a> <font id='G_cal_td' color=black>"+month;
        month_link += (month < 12)? "</font> <a id='G_cal_td' onClick=\"cal("+year+","+(month+1)+","+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢º</a>":"</font> <a id='G_cal_td' onClick=\"cal("+(year+1)+",1,"+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢º</a>";

        //HTML ´ëÀÔ
        document.all.G_cal_body.innerHTML = outStr;
        document.all.G_cal_year.innerHTML = "<a id='G_cal_td' onClick=\"cal("+(year-1)+","+month+","+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢¸</a> <font id='G_cal_td' color=black>"+year+"</font> <a id='G_cal_td' onClick=\"cal("+(year+1)+","+month+","+day+",'')\" style='text-decoration:none; color:#909090; cursor:hand'>¢º</a>";
        document.all.G_cal_month.innerHTML = month_link;
}

function onoff_Gcal(){
        document.all.G_cal.style.top = event.clientY+window.document.body.scrollTop+5;
        document.all.G_cal.style.left = event.clientX+window.document.body.scrollLeft+5;
        document.all.G_cal.style.display = (document.all.G_cal.style.display=="none")?"":"none";
}


document.writeln("<style>td.calendar{font-size:7pt; font-family:tahoma;color:black; background-color:white}</style>");
document.writeln(""
+"<div id=G_cal style='width=160;position:absolute;z-index:2;display:none'>"
+"<table bgcolor=#EEEEEE width=160 height=25 border=0 cellpadding=3 cellspacing=0 style='border:1 solid black'>"
+" <tr><td id='G_cal_td' align=center style='font-size:8pt; font-family:tahoma'>"
+" <span id=G_cal_year></span>&nbsp;&nbsp;<span id=G_cal_month></span>"
+" </td></tr>"
+"</table>"
+"<div id=G_cal_body style='width:160'>"
+"</div></div>");

