<!--
	function fnContentValuation(recomType, msg, actionflag)
	{
		if(actionflag == "F"){
			alert(msg);
			return false;
		}else{
			if(confirm(msg)){
				return true;
			}else{
				return false;
			}
		}
	}
	
	function fnBoardDelete(msg){
		if(confirm(msg)){
			return true;
		}else{
			return false;
		}
	}
//-->
