// ==========================
// BBS 이동을 위한 스크립트
// ==========================


	function BBS_list(nowBlock,page)
	{
		document.bbs.BBS_Mode.value="list";
		document.bbs.nowBlock.value=nowBlock;
		document.bbs.page.value=page;
		document.bbs.submit();
	}

	function BBS_view(value){
		switch (value) {
			case '68039' : open_ebook('/ebook/news/239ho/239ho.html'); break;
			case '68685' : open_ebook('/ebook/news/240ho/240ho.html'); break;
			case '69175' : open_ebook('/ebook/news/241ho/241ho.html'); break;
			case '82934' : open_ebook('/ebook/infection/201004ho/201004ho.html'); break;
			case '82961' : open_ebook('/ebook/news/242ho/242ho.html'); break;
			case '83338' : open_ebook('/ebook/news/243ho/243ho.html'); break;
			case '84140' : open_ebook('/ebook/news/244ho/244ho.html'); break;
			case '84868' : open_ebook('/ebook/news/245ho/245ho.html'); break;
			case '85608' : open_ebook('/ebook/news/246ho/246ho.html'); break;
			case '85824' : open_ebook('/ebook/infection/201011ho/201011ho.html'); break;
			case '86435' : open_ebook('/ebook/news/247ho/247ho.html'); break;
			case '86436' : open_ebook('/ebook/news/247_1ho/247_1ho.html'); break;
			case '87193' : open_ebook('/ebook/news/248ho/248ho.html'); break;
			case '87861' : open_ebook('/ebook/news/249ho/249ho.html'); break;
			case '88508' : open_ebook('/ebook/news/250ho/250ho.html'); break;
			case '89429' : open_ebook('/ebook/news/251ho/2011_May.html'); break;
			case '89662' : open_ebook('/ebook/infection/201104ho/201104ho.html'); break;
			case '90263' : open_ebook('/ebook/news/252ho/2011_june.html'); break;
			case '91266' : open_ebook('/ebook/news/253ho/253ho.html'); break;
			case '91738' : open_ebook('/ebook/news/254ho/254ho.html'); break;
			case '91901' : open_ebook('/ebook/infection/201108ho/201108ho.html'); break;
			case '92365' : open_ebook('/ebook/news/255ho/255ho.html'); break;
			case '93096' : open_ebook('/ebook/news/256ho/256ho.html'); break;
			case '93745' : open_ebook('/ebook/news/257ho/257ho.html'); break;
			case '94512' : open_ebook('/ebook/news/258ho/258ho.html'); break;
			case '95128' : open_ebook('/ebook/news/259ho/259ho.html'); break;
			case '95594' : open_ebook('/ebook/infection/201112ho/201112ho.html'); break;
			case '95769' : open_ebook('/ebook/news/260ho/260ho.html'); break;
			default : 
				document.bbs.BBS_Mode.value="view";
				document.bbs.bdid.value=value;
				document.bbs.submit();
				break;
		}
	 }

	function BBS_write(){
		document.bbs.BBS_Mode.value="write";
		document.bbs.bdid.value="";
		document.bbs.submit();   
	 }

	function BBS_reply(){
		document.bbs.BBS_Mode.value="write";
		if (parseInt(document.bbs.bdid.value)>0)
		{
			document.bbs.submit();   
		}
		else
		{
			BBS_list(0,0);
		}
	 }

//News&Notice e-book 띄우기
	function open_ebook(v){
		window.open(v, '', 'width=1000, height=740, menubars=no, fullscreen=yes');
	}
