	//Curvica Module
	//Created: 25/6/01 :DC
	//Jumps to section specified


	function goNext(){
		if(lpNextSectionID!=-1){
			window.location.href="Section" + lpNextSectionID+".html";
		}else{
			alert("End of Document - no next page");
		}
	}

	function goPrev(){
		if(lpPreviousSectionID!=-1){
			window.location.href="Section" + lpPreviousSectionID+".html";
		}else{
			alert("Start of Document - no previous page");
		}
	}
	
	function printPreview(lpSectionID){
		var datWindow = new Date();
		var zpWindowName = datWindow.getTime();
		window.open("PrintSection"+lpSectionID+".html?location="+zpCurrentLocation,'window'+zpWindowName);
	}
	function viewPDF(zpPDFPath){
		var datWindow = new Date();
		var zpWindowName = datWindow.getTime();
		//window.open(zpPDFPath,'windowPDF'+zpWindowName);
		window.location.href=zpPDFPath;
	}