\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 mubu_r2Obj = InternetExplorer ? mubu_r2 : document.mubu_r2;
var xmove=0, ymove=0;
// ZoomIn on movie and increase ZoomCounter by 1
if (command=="ZoomIn"){
mubu_r2Obj.Zoom(90);
ZoomCounter=ZoomCounter+1;
}
// Unless ZoomCount is 0 (100% view), Zoom out on movie
if ((command=="ZoomOut") && (ZoomCounter!=0)){
mubu_r2Obj.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;
}
mubu_r2Obj.Pan(ymove,xmove,1);
}
}
//-->
Musterbuch/Model Book, fol. 02v - 03r