﻿function encode_utf8(s) {
    return encodeURIComponent(s);
}

function decode_utf8(s) {
    return decodeURIComponent(escape(s));
}

function GoSearch(b) {
    var word = "";
    var sType = -1;
    if (b) {
        word = document.getElementById("KeyWords1").value;
    } else {
        word = document.getElementById("KeyWords2").value;

    }
    sType = '0';

    if (word == "") {
        alert('請輸入關鍵字!!');
        return false;
    }
    location.href = 'http://search.kimy.com.tw/wise/doSearch.jsp?coreId=' + sType + '&oq=' + encode_utf8(word) + '&q=' + encode_utf8(word) + '&qt=dismax&showCommand=true&type=facet';
}

function init() {
    //	var o=document.getElementById('FOOTER');
    //	var h=document.body.scrollHeight ;
    //	o.style.top=h-o.offsetHeight+10;


}

function toKeyArticle(i) {
    var o = document.getElementById('articleDiv' + i);
    if (o.kid) {
        var kid = o.kid;
        var g_id = o.g_id
        window.location = '/new/keyArticle.aspx?art_id=' + kid + '&g_id=' + g_id;
    }



}

function toQA() {
    var o = document.getElementById('qaList');
	var s=o[o.selectedIndex].value
	if (s=='') {
		window.location = '/new/qaList.aspx';
		
	}else{
		s = '/new/qaList.aspx?g_id=3&c_name=' +s;
		window.location = s;
	}
    
}