---------------------------------------------------------------------------------------------
<?
//***************************************************************
// Function : change_title()
// Comment : 인자를 받아 해당 input 값의 default 값 및 value삭제
// 태그 소개글 자료제목
//***************************************************************
?>
<script>
function change_title(obj_id)
{
if(obj_id == 'fileIntro'){
if( document.getElementById('intro_chk').value == 0) {
document.getElementById('fileIntro').value = '';
document.getElementById('intro_chk').value = "1";
}
document.getElementById('fileIntro').style.color = "#000000";
}else{
}
}
</script>
<input type="hidden" id="intro_chk" name="intro_chk" value="0">
<textarea class="write_textarea_mybox_01" id="fileIntro" name="fileIntro" style="width:525px;height:95px; color:#909090;padding:5px 0 5px 3px" onfocus="javascript:change_title('fileIntro');">
※ 소개글은 자료 판매에 도움이 되며 1000자 내외로 작성해 주세요.
(ex)경영학-경영원론이란 주제에 대한 리포트 </textarea>