function PaginationGotoPage(npage){
	var t_val = document.getElementById('pagination_page').value;
    t_val = npage+t_val;
	var t_url = t_val;
	t_url = '?p0=' + t_url;
	window.open(t_url,'_self');	
}

function URLDecode(psEncodeString)
{
  // Create a regular expression to search all +s in the string
  var lsRegExp = /\+/g;
  // Return the decoded string
  return unescape(String(psEncodeString).replace(lsRegExp, " "));
}
