function ShowQ(Q){
var DIV1="#DivArticleList";
var URL1=Server+"remote/projectList.aspx?Q="+ Q +"&TYPE=pic";
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
}

function ShowQbest(Q,B){
var DIV1="#DivArticleList";
var URL1=Server+"remote/projectList.aspx?Q=" + Q + "&best=" + B + "&TYPE=pic";
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
}

function ShowICN(ICN){
var DIV1="#DivArticleList";
if(ICN==0)
{
var URL1=Server+"remote/projectList.aspx?TYPE=pic";
}else{
var URL1=Server+"remote/projectList.aspx?TYPE=pic&ICN="+ICN;
	}
var DIV2="#nowPoint";
REQUEST(URL1,DIV1);
$(DIV2).empty();
$(DIV2).append("[" + ICN + "]");
}
