\n'
document.write(temp);
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
var ZoomCounter=0;
// Handle all the the FSCommand messages in a FutureSplash movie
function zoomctrl_DoFSCommand(command, args) {
var b156vflObj = InternetExplorer ? b156vfl : document.b156vfl;
var xmove=0, ymove=0;
// ZoomIn on movie and increase ZoomCounter by 1
if (command=="ZoomIn"){
b156vflObj.Zoom(90);
ZoomCounter=ZoomCounter+1;
}
// Unless ZoomCount is 0 (100% view), Zoom out on movie
if ((command=="ZoomOut") && (ZoomCounter!=0)){
b156vflObj.Zoom(110);
ZoomCounter=ZoomCounter-1;
}
// Handle Panning commands and determine increments for x and y axes
if (command=="Pan" && ZoomCounter>0){
if (args=="up" || args=="down"){
xmove=7;
if (args=="up"){
xmove=-7;
}
ymove=0;
}
if (args=="left" || args=="right"){
ymove=7;
if (args=="left"){
ymove=-7;
}
xmove=0;
}
b156vflObj.Pan(ymove,xmove,1);
}
}
//-->
Bd./Vol. 2, fol. 156v