	/**
	 *  getXMLHttpRequest  XMLHTTP °´Ã¼ »ý¼º
	 */
	function getXMLHttpRequest()
	{
		if (window.ActiveXObject)
		{
			try {
				return new ActiveXObject("Msxml2.XMLHTTP");
			} catch(e) {
				try {
					return new ActiveXObject("Microsoft.XMLHTTP");
				} catch(e1) { return null; }
			}
		} else if (window.XMLHttpRequest) {
			return new XMLHttpRequest();
		} else {
			return null;
		}
	}


	/**
	 *  jsContLoad  ¹ø¿ªº° ¼º°æ³»¿ë ·Îµå
	 */
	function jsContLoad(kindbcd,bib_volumn,stt_chapter, end_chapter,stt_part, end_part)
	{

		var Url //°æ·Î+ÆÄÀÏ¸í
		var Params //ÆÄ¶ó¸ÞÅÍ

		Url="/qtpart/compart/com_read_bible.asp";
		Params='kindbcd='+kindbcd+'&bib_volumn='+bib_volumn+'&stt_chapter='+stt_chapter;
		Params= Params + '&end_chapter='+end_chapter+'&stt_part='+stt_part+'&end_part='+end_part;
//alert(Params);
		httpRequest = getXMLHttpRequest();
		httpRequest.open("post", Url,false);
		httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		httpRequest.send(Params)
		if (httpRequest.readyState == 4) {
			if (httpRequest.status == 200) {
				Cont.innerHTML=httpRequest.responseText;
			} else {
				alert("½ÇÆÐ: "+httpRequest.status);
			}
		}
	}

	function jsContLoad_sub(kindbcd,bib_volumn,stt_chapter, end_chapter,stt_part, end_part)
	{

		var Url //°æ·Î+ÆÄÀÏ¸í
		var Params //ÆÄ¶ó¸ÞÅÍ

		Url="/qtpart/compart/com_read_bible.asp";
		Params='kindbcd='+kindbcd+'&bib_volumn='+bib_volumn+'&stt_chapter='+stt_chapter;
		Params= Params + '&end_chapter='+end_chapter+'&stt_part='+stt_part+'&end_part='+end_part;
//alert(Params);
		httpRequest = getXMLHttpRequest();
		httpRequest.open("post", Url,false);
		httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		httpRequest.send(Params)
		if (httpRequest.readyState == 4) {
			if (httpRequest.status == 200) {
				Cont_sub.innerHTML=httpRequest.responseText;
			} else {
				alert("½ÇÆÐ: "+httpRequest.status);
			}
		}
	}

