// the page module is statics page
function GotoPageHtml(htmlString, pageno){
    location.href = htmlString + "_" + pageno + ".html";
}

// the page module of search engine
function GotoPageDynamic(host, parameter) {
    //location.href = host + "/" + page + "?whichsearch=" + whichSearch + "&searchcontent=" + condition + "&" 
    //    + pPage + "=" + document.getElementById(name).value + "&" + rPage + "&" + mPage + "&categoryId=" + categoryId;
    location.href = host + "/" + parameter + document.getElementById("page").value
}

function GotoNewsPage(typeId, name) {
    location.href = "news_list.aspx?NewsTypeId=" + typeId + "&page=" + document.getElementById(name).value;
}