	//Curvica Module
	//Created: 25/6/01 :DC
	//Jumps to chart specified




	function goNext(){
		if(lpNextEntityID!=-1){
			window.location.href="viewerChart" + lpNextEntityID + ".html";
		}else{
			alert("End of List - no next page");
		}
	}

	function goPrev(){
		if(lpPrevEntityID!=-1){
			window.location.href="viewerChart" + lpPrevEntityID +".html";
		}else{
			alert("Start of List - no previous page");
		}
	}
	

	function viewPDF(zpPDFPath){
		var datWindow = new Date();
		var zpWindowName = datWindow.getTime();
		//window.open(zpPDFPath,'windowPDF'+zpWindowName);
		window.location.href=zpPDFPath;
	}