  //»èÁ¦
	function deleteUnBbs1(passForm){
		if( lTrim(passForm.bbsPassword.value) == "" ){
				alert(" ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.bbsPassword.focus();	
				return;
		}
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
	
	function deleteUnBbs(passForm){
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
	
	function deleteBbs(passForm){
		if(!checkList(passForm)){
			alert(" »èÁ¦ÇÒ ±ÛÀ» ¼±ÅÃÇØ ÁÖ¼¼¿ä. ");
			return;
		}
		if(confirm(" Á¤¸» »èÁ¦ÇÏ½Ã°Ú½À´Ï±î? ")){
			passForm.submit();
		}
	}
		
	
	//bbs Ãß°¡
	function writeBbs(passForm){
			if( lTrim(passForm.bbsTitle.value) == "" ){
				alert(" Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.bbsTitle.focus();	
			return;
			}
			
			if( lTrim(passForm.bbsContents.value) == "" ){
				alert(" ³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
				passForm.bbsContents.focus();	
				return;
			} 
			
			passForm.submit();
	}
	
	//bbs Ãß°¡
	//function writeBbs1(passForm){
	//		if( lTrim(passForm.bbsTitle.value) == "" )
	//		{
//				alert(" Á¦¸ñÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
//				passForm.bbsTitle.focus();	
//				return;
//			}
//			if( lTrim(passForm.bbsPostee.value) == "" )
//			{
//				alert(" ÀÛ¼ºÀÚ¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
//				passForm.bbsPostee.focus();	
//				return;
//			}
//			if( lTrim(passForm.bbsContents.value) == "" )
//			{
//				alert(" ³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
//				passForm.bbsContents.focus();	
//				return;
//			}
//			if( lTrim(passForm.bbsPassword.value) == "" )
//			{
//				alert(" ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä. ");
//				passForm.bbsPassword.focus();	
//				return;
//			}
//			
//			passForm.Content.value = idContent.content;
//			
//			passForm.submit();
//	}