function setPage(t_cnt, nPage){
	var str = "";

	var pagegroup_size = 10;
	var board_size = 8;
	var nPageStart, nPageEnd, t_page;

	if((t_cnt % board_size) > 0){
		t_page = parseInt(t_cnt / board_size) + 1;
	} else{
		t_page = parseInt(t_cnt / board_size);
	}

	if(t_page == 1){
		str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> 1 "
			+ "<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n"
	} else if(t_page > 1){
		if(nPage == 1){
			nPageStart = 1;
			nPageEnd = pagegroup_size;
		} else{
			if(parseInt(nPage% pagegroup_size) == 0)
				nPageStart =  nPage - (pagegroup_size -1);
			else
				nPageStart = parseInt(nPage/ pagegroup_size) *  pagegroup_size + 1;

			nPageEnd =  nPageStart + (pagegroup_size-1);
		} 

		if(nPageEnd > t_page)
			nPageEnd = t_page;

		if(nPageStart <= pagegroup_size){
			str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> ";
		} else{
			str += "<a onclick=\"javascript:location.href='./event.php?nPage=" + (nPageStart - pagegroup_size) + "';\" style='cursor:pointer;'>"
				+ "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'></a> ";
		}

		for(var i = nPageStart ; i <= nPageEnd ; i++){
			if(i == nPage){
				str += "<b>" + i + "</b> ";
			} else{
				str += "<a onclick=\"javascript:location.href = './event.php?nPage=" + i + "';\" style='cursor:pointer;'>" + i + "</a> ";
			}

			if(i != nPageEnd){
				str += " | ";
			}
		}

		if(nPageEnd < t_page){
			str += "<a onclick=\"javascript:location.href = './event.php?nPage=" + (nPageStart + pagegroup_size) + "';\" style='cursor:pointer;text-decoration:none;color:black;'> <img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'><a>\r\n";
		} else{
			str += "&nbsp;<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n";
		}
	}

	document.write(str);
}

function setEndPage(t_cnt, nPage, y, m){
	var str = "";

	var pagegroup_size = 10;
	var board_size = 8;
	var nPageStart, nPageEnd, t_page;

	if((t_cnt % board_size) > 0){
		t_page = parseInt(t_cnt / board_size) + 1;
	} else{
		t_page = parseInt(t_cnt / board_size);
	}

	if(t_page == 1){
		str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> 1 "
			+ "<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n"
	} else if(t_page > 1){
		if(nPage == 1){
			nPageStart = 1;
			nPageEnd = pagegroup_size;
		} else{
			if(parseInt(nPage% pagegroup_size) == 0)
				nPageStart =  nPage - (pagegroup_size -1);
			else
				nPageStart = parseInt(nPage/ pagegroup_size) *  pagegroup_size + 1;

			nPageEnd =  nPageStart + (pagegroup_size-1);
		} 

		if(nPageEnd > t_page)
			nPageEnd = t_page;

		if(nPageStart <= pagegroup_size){
			str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> ";
		} else{
			str += "<a onclick=\"javascript:location.href='./event_end.php?year=" + y + "&month=" + m + "&nPage=" + (nPageStart - pagegroup_size) + "';\" style='cursor:pointer;'>"
				+ "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'></a> ";
		}

		for(var i = nPageStart ; i <= nPageEnd ; i++){
			if(i == nPage){
				str += "<b>" + i + "</b> ";
			} else{
				str += "<a onclick=\"javascript:location.href = './event_end.php?year=" + y + "&month=" + m + "&nPage=" + i + "';\" style='cursor:pointer;'>" + i + "</a> ";
			}

			if(i != nPageEnd){
				str += " | ";
			}
		}

		if(nPageEnd < t_page){
			str += "<a onclick=\"javascript:location.href = './event_end.php?year=" + y + "&month=" + m + "&nPage=" + (nPageStart + pagegroup_size) + "';\" style='cursor:pointer;text-decoration:none;color:black;'> <img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'><a>\r\n";
		} else{
			str += "&nbsp;<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n";
		}
	}

	document.write(str);
}

function setSurveyPage(t_cnt, nPage){
	var str = "";

	var pagegroup_size = 10;
	var board_size = 8;
	var nPageStart, nPageEnd, t_page;

	if((t_cnt % board_size) > 0){
		t_page = parseInt(t_cnt / board_size) + 1;
	} else{
		t_page = parseInt(t_cnt / board_size);
	}

	if(t_page == 1){
		str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> 1 "
			+ "<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n"
	} else if(t_page > 1){
		if(nPage == 1){
			nPageStart = 1;
			nPageEnd = pagegroup_size;
		} else{
			if(parseInt(nPage% pagegroup_size) == 0)
				nPageStart =  nPage - (pagegroup_size -1);
			else
				nPageStart = parseInt(nPage/ pagegroup_size) *  pagegroup_size + 1;

			nPageEnd =  nPageStart + (pagegroup_size-1);
		} 

		if(nPageEnd > t_page)
			nPageEnd = t_page;

		if(nPageStart <= pagegroup_size){
			str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> ";
		} else{
			str += "<a onclick=\"javascript:location.href='./survey.php?nPage=" + (nPageStart - pagegroup_size) + "';\" style='cursor:pointer;'>"
				+ "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'></a> ";
		}

		for(var i = nPageStart ; i <= nPageEnd ; i++){
			if(i == nPage){
				str += "<b>" + i + "</b> ";
			} else{
				str += "<a onclick=\"javascript:location.href = './survey.php?nPage=" + i + "';\" style='cursor:pointer;'>" + i + "</a> ";
			}

			if(i != nPageEnd){
				str += " | ";
			}
		}

		if(nPageEnd < t_page){
			str += "<a onclick=\"javascript:location.href = './survey.php?nPage=" + (nPageStart + pagegroup_size) + "';\" style='cursor:pointer;text-decoration:none;color:black;'> <img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'><a>\r\n";
		} else{
			str += "&nbsp;<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n";
		}
	}

	document.write(str);
}

function setSurvey_1Page(t_cnt, nPage){
	var str = "";

	var pagegroup_size = 10;
	var board_size = 8;
	var nPageStart, nPageEnd, t_page;

	if((t_cnt % board_size) > 0){
		t_page = parseInt(t_cnt / board_size) + 1;
	} else{
		t_page = parseInt(t_cnt / board_size);
	}

	if(t_page == 1){
		str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> 1 "
			+ "<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n"
	} else if(t_page > 1){
		if(nPage == 1){
			nPageStart = 1;
			nPageEnd = pagegroup_size;
		} else{
			if(parseInt(nPage% pagegroup_size) == 0)
				nPageStart =  nPage - (pagegroup_size -1);
			else
				nPageStart = parseInt(nPage/ pagegroup_size) *  pagegroup_size + 1;

			nPageEnd =  nPageStart + (pagegroup_size-1);
		} 

		if(nPageEnd > t_page)
			nPageEnd = t_page;

		if(nPageStart <= pagegroup_size){
			str += "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'> ";
		} else{
			str += "<a onclick=\"javascript:location.href='./survey_1.php?nPage=" + (nPageStart - pagegroup_size) + "';\" style='cursor:pointer;'>"
				+ "<img src='http://businesstv.chosun.com/images/200801/prev.jpg' width='12' height='11'></a> ";
		}

		for(var i = nPageStart ; i <= nPageEnd ; i++){
			if(i == nPage){
				str += "<b>" + i + "</b> ";
			} else{
				str += "<a onclick=\"javascript:location.href = './survey_1.php?nPage=" + i + "';\" style='cursor:pointer;'>" + i + "</a> ";
			}

			if(i != nPageEnd){
				str += " | ";
			}
		}

		if(nPageEnd < t_page){
			str += "<a onclick=\"javascript:location.href = './survey_1.php?nPage=" + (nPageStart + pagegroup_size) + "';\" style='cursor:pointer;text-decoration:none;color:black;'> <img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'><a>\r\n";
		} else{
			str += "&nbsp;<img src='http://businesstv.chosun.com/images/200801/next.jpg' width='12' height='11'>\r\n";
		}
	}

	document.write(str);
}