<%
Sub AdvancedPaging(PageNo, NumPage)'PageNo:ÇöÀçÆäÀÌÁö, NumPage:ÀüÃ¼ÆäÀÌÁö
%>
	<!--ÀÌÀü 10°³, ´ÙÀ½ 10°³ ÆäÀÌÂ¡ Ã³¸® ½ÃÀÛ-->
		<FONT style="font-size: 9pt;">
			<font color="#c0c0c0">[</font>
		<%	If PageNo > 10 Then %>
			<a href="./boardlist.asp?Page=<%= ((PageNo - 1) \ 10) * 10 %>">¢¸</a>
		<%	Else %>
			<font color="#c0c0c0">¢·</font>
		<%	End If %>			
			<font color="#c0c0c0">|</font>
		<%	For i = (((PageNo - 1) \ 10) * 10 + 1) To ((((PageNo - 1) \ 10) + 1) * 10)
			If i > NumPage Then
				Exit For
			End If
			If i = Int(PageNo) Then
		%>
			<b><%= i %></b> <font color="#c0c0c0">|</font> 
		<%	Else %>
			<a href="./boardlist.asp?Page=<%= i %>"><%= i %></a> <font color="#c0c0c0">|</font> 
		<%	End If %>
		<%	Next %>
		<%	If CInt(i) < CInt(NumPage) Then %>
			<a href="./boardlist.asp?Page=<%= ((PageNo - 1) \ 10) * 10 + 11 %>">¢º</a>
		<%	Else %>
			<font color="#c0c0c0">¢¹</font>
		<%	End If %>
			<font color="#c0c0c0">]</font>
		</FONT>
	<!--ÀÌÀü 10°³, ´ÙÀ½ 10°³ ÆäÀÌÂ¡ Ã³¸® Á¾·á-->
<%
End Sub
%>