// get our flash movie object
var flashMovie;
function init() {
  if (document.getElementById) {
     flashMovie = document.getElementById("flash_ppt");
     
  }
}

function doZoom() {
	flashMovie.fncZoom();
}

function doPrint() {
	flashMovie.fncPrint();
}

// wait for the page to fully load before initializing
window.onload = init;