// JavaScript Document
function _doPagination(page,query) {

	var d = window.document;

	var str = d.getElementById('cmbPage')[d.getElementById('cmbPage').selectedIndex].value;

	if(query == "") {

		window.location.href = page + "?page=" + str;

	} else {

		window.location.href = page + "?page=" + str + "&" + query;

	}

}
