<!--

var MyPage=new Array; {
MyPage[1]="NPG-resources_1.shtml"; 
MyPage[2]="NPG-resources_2.shtml"; 
MyPage[3]="NPG-resources_3.shtml"; 
MyPage[4]="NPG-resources_4.shtml"; 
MyPage[5]="NPG-resources_5.shtml"; 
MyPage[6]="NPG-resources_6.shtml"; 
MyPage[7]="NPG-resources_7.shtml"; 
MyPage[8]="NPG-resources_8.shtml"; 
MyPage[9]="NPG-resources_9.shtml"; 
MyPage[10]="NPG-resources_10.shtml"; 
MyPage[11]="NPG-resources_11.shtml"; 
MyPage[12]="NPG-resources_12.shtml"; 
MyPage[13]="NPG-resources_13.shtml"; 
MyPage[14]="NPG-resources_14.shtml"; 
MyPage[15]="NPG-resources_15.shtml"; 
MyPage[16]="NPG-resources_16.shtml"; 
MyPage[17]="NPG-resources_17.shtml"; 
MyPage[18]="NPG-resources_18.shtml"; 
} 

function goPrev() { 
	if (ThisPageNumber != 1) { 
		ThisPageNumber=ThisPageNumber-1; 
		window.location=MyPage[ThisPageNumber]; 
	} 
}

function goNext() { 
	ThisPageNumber=ThisPageNumber+1; 
	if (ThisPageNumber >=MyPage.length) { 
		ThisPageNumber=ThisPageNumber-1; 
	} 
	window.location=MyPage[ThisPageNumber]; 
}

-->

