﻿/*
=============================================

PageNavigationArea

=============================================
*/

//GrovalNavigationArea
function setPagePageNavigation(param){
	page = param;
	
	document.write('<h2 class="rmv"><a name="PAGENAVI" id="PAGENAVI">Page Navigation</a></h2>');
	if (page == "full"){
		//full
		document.write('<div id="PnvSetFull">');
		document.write('<p class="IconIndex"><a href="/" title="Index">Index</a></p>');
		document.write('<p class="IconPrev"><a href="/" title="Prev.">Prev.</a></p>');
		document.write('<p class="IconNext"><a href="/" title="Next">Next</a></p>');
		document.write('<p class="IconTop"><a href="#Container" title="首页">首页</a></p>');
		document.write('</div>');
		
	}else if (page == "index"){
		
		//index
		document.write('<div id="PnvSetIndex">');
		//document.write('<p class="IconIndex"><a href="/" title="Index">Index</a></p>');
		document.write('<p class="IconTop"><a href="#Container" title="首页">首页</a></p>');
		document.write('</div>');
		
	}else if (page == "next"){
		
		//next
		document.write('<div id="PnvSetNext">');
		document.write('<p class="IconIndex"><a href="/" title="Index">Index</a></p>');
		document.write('<p class="IconNext"><a href="/" title="Next">Next</a></p>');
		document.write('<p class="IconTop"><a href="#Container" title="首页">首页</a></p>');
		document.write('</div>');
	
	}else if (page == "prev"){
		
		//prev
		document.write('<div id="PnvSetPrev">');
		document.write('<p class="IconIndex"><a href="/" title="Index">Index</a></p>');
		document.write('<p class="IconPrev"><a href="/" title="Prev.">Prev.</a></p>');
		document.write('<p class="IconTop"><a href="#Container" title="首页">首页</a></p>');
		document.write('</div>');
	
	}else if (page == "indexTop"){
		
		//index
		document.write('<div id="PnvSetTop02">');
		document.write('<p class="IconTop"><a href="#Container" title="首页">首页</a></p>');
		document.write('</div>');
	
	}

}

