
function CheckIt(){

	if(document.form_1.cue.options[document.form_1.cue.selectedIndex].value == 0)
	{
		alert("ºÐ·ù¸¦ ¼±ÅÃÇÏ¼¼¿ä.");
		form_1.cue.focus();
		return;
	}	

	
	if (!document.form_1.s_que.value)
	{
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇÏ¼¼¿ä.");
		form_1.s_que.focus();
		return;
	}		
	
	if (check_plus(form_1))
	{
		//alert(document.form_1.url.value);
	    document.form_1.action=document.form_1.url.value;
		form_1.submit();
		return;
	}
	return;
}


function check_plus(frm)
{
	return true;
}



function CInput(value) {
//	alert(form_1.cue.selectedIndex);

//		singleissue = false;
		if (form_1.cue.selectedIndex == 0)  { form_1.url.value = "";		}
		if (form_1.cue.selectedIndex == 1) 	{ form_1.url.value = "/data/report.html";}
		if (form_1.cue.selectedIndex == 2)	{ form_1.url.value = "/data/room.html";}
		if (form_1.cue.selectedIndex == 3)	{ form_1.url.value = "/data/un.html";}
		if (form_1.cue.selectedIndex == 4)	{ form_1.url.value = "/board/news.html";}
		if (form_1.cue.selectedIndex == 5)	{ form_1.url.value = "/board/board.html";}
		if (form_1.cue.selectedIndex == 6)	{ form_1.url.value = "/board/column.html";}
		//form_1.subprice.value = form_1.subtype.selectedIndex;	
	
	
}


function navigator() {	
	document.form_1.action=document.form_1.url;
	document.form_1.submit();
}


