//画面遷移
function PageMove(toArtCd, toFileCd){
	//url作成
	url = "pickup_detail.aspx?acd=" + toArtCd + "&fcd=" + toFileCd;

	//画面遷移
	location.href = url;
}
