	
    //»èÁ¦
	function deleteSchedule(passForm){
		if(!checkList(passForm)){
			alert(" »èÁ¦ÇÒ ÀÚ·á¸¦ ¼±ÅÃÇØ ÁÖ¼¼¿ä. ");
			return;
		}
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
		
	function deleteUnSchedule(passForm){
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
	
	//Schedule Ãß°¡
	function writeSchedule(passForm){
			if( lTrim(passForm.scheduleTitle.value) == "" )
			{
				alert(" Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.scheduleTitle.focus();	
				return;
			}
			if( lTrim(passForm.scheduleContents.value) == "" )
			{
				alert(" ³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.scheduleContents.focus();	
				return;
			}
			
			
			passForm.submit();
	}
	
	
	
	//Çà»çÀÏ ³¯Â¥ °¡Á®¿À±â 
	function populate(objForm,selectIndex) {
		thismonth = objForm.scheduleStartDate2.options[objForm.scheduleStartDate2.selectedIndex].text
		montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); 
		maxdays=montharray[thismonth-1]; 
		
		for (var i = 0; i < maxdays; i++) {
		objForm.scheduleStartDate3.options[0] = null;
		}
		for (var i = 0; i < maxdays; i++) {
		objForm.scheduleStartDate3.options[i] = new Option(i+1);
		}
		document.addForm.scheduleStartDate3.options[0].selected = true; 
	}
	
	function populate1(objForm,selectIndex) {
		thismonth = objForm.scheduleEndDate2.options[objForm.scheduleEndDate2.selectedIndex].text
		montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); 
		maxdays=montharray[thismonth-1]; 
		
		for (var i = 0; i < maxdays; i++) {
		objForm.scheduleEndDate3.options[0] = null;
		}
		for (var i = 0; i < maxdays; i++) {
		objForm.scheduleEndDate3.options[i] = new Option(i+1);
		}
		document.addForm.scheduleEndDate3.options[0].selected = true; 
	}
	
	