﻿// JavaScript Document<!--	function confirmDelete(uri)	{		if(confirm("삭제하시겠습니까?"))			document.location.href = uri;		else			return;	}		function chkWriteForm(obj)	{		var bool = true;				bool = checkValue(obj.txt_title, "null", "제목을 입력하여 주십시오.", true);		if(!bool) return false;		/*//bool = checkValue(obj.txt_contents__Frame.document.getElementyById(, "null", "내용을 입력하여 주십시오.", true);		try		{			alert(document.getElementById("txt_contents__Frame").document.getElementById("eEditorArea").document.body.innerHTML);			return false;		}		catch(e)		{			//alert(e.description);			return false;		}		/*if(document.getElementById("txt_contents__Frame").document.body.getElementById("xEditingArea").innerHTML == "")		{			alert("내용을 입력하여 주십시오.");		}		bool = false;		if(!bool) return false;*/		return true;	}		function chkWriteForm1(obj)	{		bool = checkValue(obj.txt_title, "null", "제목을 입력하여 주십시오.", true);		if(!bool) return false;		if(obj.txt_userid)		{			bool = checkValue(obj.txt_userid, "null", "성함을 입력하여 주십시오.", true);			if(!bool) return false;		}		bool = checkValue(obj.txt_pwd, "null", "비밀번호를 입력하여 주십시오.", true);		if(!bool) return false;		bool = checkValue(obj.txt_email, "null", "이메일을 입력하여 주십시오.", true);		if(!bool) return false;		return true;	}		function sendComment(processUrl)	{		setQueryString("commentForm");		httpRequest("POST", processUrl, true, "div_print");	}//-->
