	//ÆÄÀÏ¼öÁ¤½Ã°£ ¾ò±â
	var ModifyTime=document.lastModified;
	mod_year =ModifyTime.substr(6,4);
	mod_month =ModifyTime.substr(0,2);
	mod_day =ModifyTime.substr(3,2);
	mod_hour =ModifyTime.substr(11,2);
	mod_minute =ModifyTime.substr(14,2);
	mod_second =ModifyTime.substr(17,2);
	mod_tot=mod_year+'-'+mod_month+'-'+mod_day+' '+mod_hour+':'+mod_minute+':'+mod_second;

	//ÆÄÀÏ»ý¼º½Ã°£ ÆÄÀÏ·ÎºÎÅÍ ¾ò±â
	var crt_temp = document.URL;
	var end_pt = crt_temp.lastIndexOf('.htm');
	crt_year = crt_temp.substr(end_pt-19,4);
	crt_month = crt_temp.substr(end_pt-15,2);
	crt_day = crt_temp.substr(end_pt-13,2);
	crt_hour = crt_temp.substr(end_pt-11,2);
	crt_minute = crt_temp.substr(end_pt-9,2);
	crt_tot=crt_year+'/'+crt_month+'/'+crt_day+' '+crt_hour+':'+crt_minute;

	mod_make = new Date(mod_year,mod_month-1, mod_day, mod_hour,mod_minute);
	crt_make = new Date(crt_year,crt_month-1,crt_day,crt_hour,crt_minute);
	rem_min = (mod_make - crt_make) / 1000 /60;

        if(rem_min >= 3){
		mod_text="<br><font color=\"585858\">¼öÁ¤½Ã°£ : "+mod_tot+"</font>";
	//	document.write(mod_text);
	}
