		
    //»èÁ¦
	function deleteNotice(passForm){
		if(!checkList(passForm)){
			alert(" »èÁ¦ÇÒ °øÁö»çÇ×À» ¼±ÅÃÇØ ÁÖ¼¼¿ä. ");
			return;
		}
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
		
	function deleteUnNotice(passForm){
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
	
	//notice Ãß°¡
	function writeNotice(passForm){
			if( lTrim(passForm.noticeTitle.value) == "" )
			{
				alert(" Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.noticeTitle.focus();	
				return;
			}
			if( lTrim(passForm.noticeContents.value) == "" )
			{
				alert(" ³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.noticeContents.focus();	
				return;
			}
			
			
			passForm.submit();
	}