
function go_page3(startpage,list_num,f)
{
	var max = document.f_go.totalpage.value;
	if(parseInt(max)>=parseInt(startpage) && parseInt(startpage)>0)
	{
		
		document.f_go.txtpage.value = startpage;
		document.f_go.submit();
	}
	else
	{
		if(startpage=='')
			alert('이동할 페이지 번호를 입력하세요.');
		else
			alert('페이지 범위를 벗어납니다.');

		f.txtpage.value = '';
		f.txtpage.focus();
	}
	return;
}

function FalseForm()
{
	return false;
}
