function topnav(pagesq, urlsq){
	
	page_pre=urlsq-1;
	page_next=urlsq+1;
	
	if (urlsq==0)
		page_pre=pagesq.length-1;
	
	if (urlsq==(pagesq.length-1))
		page_next=0;
	
	document.write(' <table border=0 cellpadding=0 cellspacing=0> ');
	document.write(' <tr> ');
	document.write(' <form><td><input type=image src=img/common/print_btn.jpg value=\"Print This Page\" onClick=\"window.print()\" /></td></form> ');	
	document.write(' <td valign=bottom><a href='+pagesq[(page_pre)]+' onMouseOut=MM_swapImgRestore() onMouseOver=MM_swapImage(\'Image11\',\'\',\'img/common/back_off.jpg\',1)><img src=img/common/back_on.jpg border=0 id=Image11></a></td> ');
	document.write(' <td valign=bottom><a href='+pagesq[(page_next)]+' onMouseOut=MM_swapImgRestore() onMouseOver=MM_swapImage(\'Image12\',\'\',\'img/common/forward_off.jpg\',1)><img src=img/common/forward_on.jpg border=0 id=Image12></a></td> ');
	document.write(' </tr> ');
	document.write(' </table> ');
}	
topnav(pagesq, urlsq);

