\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 b277vflObj = InternetExplorer ? b277vfl : document.b277vfl;
var xmove=0, ymove=0;
// ZoomIn on movie and increase ZoomCounter by 1
if (command=="ZoomIn"){
b277vflObj.Zoom(90);
ZoomCounter=ZoomCounter+1;
}
// Unless ZoomCount is 0 (100% view), Zoom out on movie
if ((command=="ZoomOut") && (ZoomCounter!=0)){
b277vflObj.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;
}
b277vflObj.Pan(ymove,xmove,1);
}
}
//-->
Bd./Vol. 2, fol. 277v