function StartAutoPan() {
   document.ptviewer.startAutoPan( 0.2, 0.0, 1.0 );
}
function StopAutoPan() {
    document.ptviewer.stopAutoPan();
}
function DoPanLeft(){
	document.ptviewer.startAutoPan( -0.2, 0.0, 1.0 );
}
function DoPanRight(){
	document.ptviewer.startAutoPan( 0.2, 0.0, 1.0 );
}
function DoPanDown(){
	document.ptviewer.startAutoPan( 0, -0.2, 1.0 );
}
function DoPanUp(){
	document.ptviewer.startAutoPan( 0, 0.2, 1.0 );
}
function DoZoomIn() {
	document.ptviewer.startAutoPan( 0.0, 0.0,0.99);
}
function DoZoomOut() {
	document.ptviewer.startAutoPan( 0.0, 0.0,1.01);
}


