﻿var gSpecificForm="權證最新收盤排行榜;";

function GoToMoreIndexPage(guid,lguid,formName,curChannel)
{	
	var moreIndexPosting = "";
	var currentChnGuid = document.getElementById('_CHNGUID').value;	
	
	moreIndexPosting += "?GUID=" + guid;
	moreIndexPosting += "&CH=" + curChannel;
	moreIndexPosting += "&MODE=P" ;
	moreIndexPosting += "&_PAGENO=" + DefaultPageNo;
	moreIndexPosting += "&SRC=PagerList";
	moreIndexPosting += "&_CHNGUID=" + currentChnGuid;    //CMS channel GUID
	moreIndexPosting += "&_ENDCHNNAME=" + escape(formName); //CMS child channel Name
	moreIndexPosting += GetFilterCriteria();	
	AJAX_Send("Svc_Content.asp" + moreIndexPosting,lguid,'');

	if (document.all.chlName !=null ) 
		document.all.chlName.innerText = formName;
	if (document.all.filterTD != null)		
		document.all.filterTD.style.display="none";
}

function _GoToMoreIndexPage(guid,formName)
{	
	var moreIndexPosting;
	if (gSpecificForm.indexOf(formName+";")>=0)
	{
		moreIndexPosting = "/Finairport/Chn_2/Chn_2_1/Chn_2_1_6/Chn_2_1_6_2/Chn_2_1_6_2_1/default?";
		moreIndexPosting += "SortingField=" + gSortingField;
		moreIndexPosting += "&SortingOrder=" + gSortingOrder;				
	}
	else
	{
		moreIndexPosting = "/WarrantNet/Chn_Admin/MoreIndex?DSGUID=" + guid ;
		var currentChnGuid = document.getElementById('_CHNGUID').value;	

		moreIndexPosting += "&MODE=P" ;
		moreIndexPosting += "&_PAGESIZE=" + MaxPageSize;
		moreIndexPosting += "&_PAGENO=" + DefaultPageNo;
		moreIndexPosting += "&SRC=List";
		moreIndexPosting += "&_CHNGUID=" + currentChnGuid;    //CMS channel GUID
		moreIndexPosting += "&_ENDCHNNAME=" + escape(formName); //CMS child channel Name		
	}
	window.location.href=moreIndexPosting;
}