// JavaScript Document

var flashMovie;
//
function init() {
	if (document.getElementById) {
		flashMovie = document.getElementById("bookID");
	}
}

// wait for the page to fully load before initializing
window.onload = init;

// -----------------------------

function page_next() {
	flashMovie.setPage("next");
}

function page_back() {
	flashMovie.setPage("back");
}

function page_first() {
	flashMovie.setPage("first");
}

function page_end() {
	flashMovie.setPage("end");
}

function setPrint() {
	flashMovie.setPrint();
}

function switchStyle(style) {
	document.getElementById("style_name").value = style;
	document.getElementById("switchForm").submit();
}
