function ShowQ(Q){
var DIV1="#DivArticleList";
var URL1=Server+"remote/projectList.aspx?Q="+ Q;
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
}

function ShowQbest(Q,B){
var DIV1="#DivArticleList";
var URL1=Server+"remote/projectList.aspx?Q=" + Q + "&best=" + B;
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
}

function ShowICN(ICN){
var DIV1="#DivArticleList";
if(ICN==0)
{
var URL1=Server+"remote/projectList.aspx";
}else{
var URL1=Server+"remote/projectList.aspx?ICN="+ICN;
}
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
$(DIV2).empty();
$(DIV2).append("[" + ICN + "]");
}

function ShowJC(){
var DIV1="#DivArticleList";
var URL1
URL1=Server+"remote/integrationList.aspx?TJ=2&LX=yes";
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
$(DIV2).empty();
$(DIV2).append("[集成专利项目融资]");
}

function ShowRZ(){
var DIV1="#DivArticleList";
var URL1=Server+"remote/projectList.aspx?TJ=2&LX=yes";
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
$(DIV2).empty();
$(DIV2).append("[专利项目融资]");
}

function ShowIntegration(code){
var DIV1="#DivArticleList";
var URL1
if(code=="G" || code=="X")
{
 URL1=Server+"remote/integrationList.aspx?TYPE="+code;
}else if(code==0){
URL1=Server+"remote/integrationList.aspx?";
}else{
URL1=Server+"remote/integrationList.aspx?CODE="+code;
}
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
$(DIV2).empty();
$(DIV2).append("[" + code + "]");
}

